diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-06-22 14:34:35 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-07-01 07:20:24 -0700 |
commit | 41812aa2f3ec7bd112926210cfff8212037efa4d (patch) | |
tree | eed1ca5e7f93cfa8af015e0f9a5927bb22cbc46f /host/lib/convert/convert_common.hpp | |
parent | a4eee2aa4a4ab2b3645686d3cd42494266dc4e66 (diff) | |
download | uhd-41812aa2f3ec7bd112926210cfff8212037efa4d.tar.gz uhd-41812aa2f3ec7bd112926210cfff8212037efa4d.tar.bz2 uhd-41812aa2f3ec7bd112926210cfff8212037efa4d.zip |
uhd: Removed the ORC dependency
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 |