summaryrefslogtreecommitdiff
path: root/src/utilities
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-12-17 16:59:08 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-12-17 16:59:08 +0100
commit69f65915642a6a9b610651e4407e9127d544f416 (patch)
tree5eee6587c20837c1e57bd1d515d0baab74aca385 /src/utilities
parent7408f6e6ebaca968a0ebbbe158e232264b0f2eb9 (diff)
Removed all ARM Mali tuning results; re-added Mali-T760 and Mali-T628 results based on kernel pre-processor
Diffstat (limited to 'src/utilities')
-rw-r--r--src/utilities/compile.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utilities/compile.cpp b/src/utilities/compile.cpp
index 6243d196..a3b90126 100644
--- a/src/utilities/compile.cpp
+++ b/src/utilities/compile.cpp
@@ -79,8 +79,7 @@ Program CompileFromSource(const std::string &source_string, const Precision prec
// Runs a pre-processor to unroll loops and perform array-to-register promotion. Most OpenCL
// compilers do this, but some don't.
auto do_run_preprocessor = false;
- if (run_preprocessor == 0) { do_run_preprocessor = (device.IsARM() && device.IsGPU()) ||
- (device.IsQualcomm() && device.IsGPU()); }
+ if (run_preprocessor == 0) { do_run_preprocessor = (device.IsARM() && device.IsGPU()); }
if (run_preprocessor == 1) { do_run_preprocessor = true; }
auto kernel_string = header_string + source_string;
if (do_run_preprocessor) {