diff options
author | Ashish Chaudhari <ashish@ettus.com> | 2015-07-07 17:01:10 -0700 |
---|---|---|
committer | Ashish Chaudhari <ashish@ettus.com> | 2015-07-07 17:01:10 -0700 |
commit | 273fb752fb14e0ebf3b04e0729f6545a54baf2c6 (patch) | |
tree | 55a5bbb92a6be36d27cf6e9d5755dbacd2b5e114 /host/lib/convert/convert_common.hpp | |
parent | a44f791a44fc248f82da070cd6ea2405cf4532f6 (diff) | |
parent | 984575c9f1ca18c3d97ba730e20bdbe7b7614c1e (diff) | |
download | uhd-273fb752fb14e0ebf3b04e0729f6545a54baf2c6.tar.gz uhd-273fb752fb14e0ebf3b04e0729f6545a54baf2c6.tar.bz2 uhd-273fb752fb14e0ebf3b04e0729f6545a54baf2c6.zip |
Merge branch 'master' into x300/rev7_support
Diffstat (limited to 'host/lib/convert/convert_common.hpp')
-rw-r--r-- | host/lib/convert/convert_common.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/host/lib/convert/convert_common.hpp b/host/lib/convert/convert_common.hpp index 6c2ea9fec..65fdcbea2 100644 --- a/host/lib/convert/convert_common.hpp +++ b/host/lib/convert/convert_common.hpp @@ -65,11 +65,10 @@ static const int PRIORITY_GENERAL = 0; static const int PRIORITY_EMPTY = -1; #ifdef __ARM_NEON__ -static const int PRIORITY_LIBORC = 3; -static const int PRIORITY_SIMD = 2; //neon conversions could be implemented better, orc wins +static const int PRIORITY_SIMD = 2; static const int PRIORITY_TABLE = 1; //tables require large cache, so they are slower on arm #else -static const int PRIORITY_LIBORC = 2; +// We used to have ORC, too, so SIMD is 3 static const int PRIORITY_SIMD = 3; static const int PRIORITY_TABLE = 1; #endif |