diff options
author | Josh Blum <josh@joshknows.com> | 2012-04-16 16:44:58 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-04-16 16:49:06 -0700 |
commit | b221b3e34d4c0eaaeb3ab66778e5b82dfd0f5230 (patch) | |
tree | ca240f584c7f498ca6620036e501f3b90d4495fa /host/lib/convert | |
parent | 44b68ee80adbfc70869a5fc20ec93c4843f039e0 (diff) | |
download | uhd-b221b3e34d4c0eaaeb3ab66778e5b82dfd0f5230.tar.gz uhd-b221b3e34d4c0eaaeb3ab66778e5b82dfd0f5230.tar.bz2 uhd-b221b3e34d4c0eaaeb3ab66778e5b82dfd0f5230.zip |
convert: give SIMD conversions prio over table
given performance benchmarks involving the converter,
when the driver is also doing other things
sc8 conversions will still involve tables since
no SIMD implementations exist yet
Diffstat (limited to 'host/lib/convert')
-rw-r--r-- | host/lib/convert/convert_common.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/convert/convert_common.hpp b/host/lib/convert/convert_common.hpp index 55bc2e99d..29ea94870 100644 --- a/host/lib/convert/convert_common.hpp +++ b/host/lib/convert/convert_common.hpp @@ -57,8 +57,8 @@ static const int PRIORITY_SIMD = 1; //neon conversions could be implemented bett static const int PRIORITY_TABLE = 2; //tables require large cache, so they are slower on arm #else static const int PRIORITY_LIBORC = 1; -static const int PRIORITY_SIMD = 2; -static const int PRIORITY_TABLE = 3; +static const int PRIORITY_SIMD = 3; +static const int PRIORITY_TABLE = 2; #endif /*********************************************************************** |