arm_compute v19.05
diff --git a/SConscript b/SConscript
index e57dd23..491c1b0 100644
--- a/SConscript
+++ b/SConscript
@@ -24,8 +24,8 @@
import re
import subprocess
-VERSION = "v19.02"
-SONAME_VERSION="14.0.0"
+VERSION = "v19.05"
+SONAME_VERSION="15.0.0"
Import('env')
Import('vars')
@@ -70,7 +70,7 @@
for i in range(len(source)):
src = source[i]
dst = target[i]
- contents = src.get_contents().splitlines()
+ contents = src.get_contents().decode('utf-8').splitlines()
entry = FileEntry(target_name=dst, file_contents=contents)
files.append((os.path.basename(src.get_path()),entry))
@@ -186,11 +186,13 @@
if env['opencl']:
core_files += Glob('src/core/CL/*.cpp')
core_files += Glob('src/core/CL/kernels/*.cpp')
+ core_files += Glob('src/core/CL/gemm/*.cpp')
+ core_files += Glob('src/core/CL/gemm/reshaped/*.cpp')
+ core_files += Glob('src/core/CL/gemm/reshaped_only_rhs/*.cpp')
runtime_files += Glob('src/runtime/CL/*.cpp')
runtime_files += Glob('src/runtime/CL/functions/*.cpp')
runtime_files += Glob('src/runtime/CL/tuners/*.cpp')
- runtime_files += Glob('src/runtime/CL/gemm_reshaped/*.cpp')
graph_files += Glob('src/graph/backends/CL/*.cpp')
@@ -205,7 +207,7 @@
# build winograd sources for either v7a / v8a
core_files += Glob('src/core/NEON/kernels/convolution/*/*.cpp')
core_files += Glob('src/core/NEON/kernels/convolution/winograd/*/*.cpp')
- arm_compute_env.Append(CPPPATH = ["arm_compute/core/NEON/kernels/winograd/", "arm_compute/core/NEON/kernels/assembly/"])
+ arm_compute_env.Append(CPPPATH = ["arm_compute/core/NEON/kernels/convolution/winograd/","arm_compute/core/NEON/kernels/convolution/common/" , "arm_compute/core/NEON/kernels/assembly/"])
graph_files += Glob('src/graph/backends/NEON/*.cpp')