Mercurial > vec
view test/CMakeLists.txt @ 25:92156fe32755
impl/ppc/altivec: update to new implementation
the signed average function is wrong; it needs to round up the number
when only one of them is odd, but that doesn't necessarily seem to be
true because altivec is weird, and that's what we need to emulate the
quirks for. ugh.
also the altivec backend uses the generic functions instead of fallbacks
because it does indeed use the exact same memory structure as the generic
implementation...
author | Paper <paper@tflc.us> |
---|---|
date | Sun, 24 Nov 2024 11:15:59 +0000 |
parents | e26874655738 |
children |
line wrap: on
line source
cmake_minimum_required(VERSION 3.23) project(vec-tests LANGUAGES C) # add main vec directory add_subdirectory(.. vec) add_executable(vec-tests test.c) target_link_libraries(vec-tests vec m)