Update to 22.11
Changelog: https://arm-software.github.io/ComputeLibrary/v22.11/versions_changelogs.xhtml#S2_2_changelog
This commit is contained in:
parent
bb4209614a
commit
5e1aad5eaa
@ -2,7 +2,7 @@ ONLY_FOR_ARCHS = aarch64
|
||||
|
||||
COMMENT = Arm compute library
|
||||
|
||||
V = 22.08
|
||||
V = 22.11
|
||||
PKGNAME = arm-compute-library-${V}
|
||||
|
||||
GH_ACCOUNT = ARM-software
|
||||
@ -17,7 +17,7 @@ MAINTAINER = Kevin Lo <kevlo@openbsd.org>
|
||||
|
||||
CORE_SO_V = 2.0
|
||||
GRAPH_SO_V = 2.1
|
||||
COMPUTE_SO_V = 3.1
|
||||
COMPUTE_SO_V = 3.2
|
||||
|
||||
SHARED_LIBS += arm_compute ${COMPUTE_SO_V}
|
||||
SHARED_LIBS += arm_compute_core ${CORE_SO_V}
|
||||
@ -32,7 +32,7 @@ COMPILER = base-clang ports-gcc
|
||||
|
||||
# "build=native" here just means "not cross-compiled"
|
||||
MODSCONS_FLAGS = Werror=0 neon=1 opencl=0 embed_kernels=0 examples=0 \
|
||||
os=openbsd arch=arm64-v8a build=native
|
||||
os=openbsd arch=armv8a build=native
|
||||
|
||||
MODULES = devel/scons
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (ComputeLibrary-22.08.tar.gz) = rCzntWNumfF1sIQ2L4P+JNcubOsL1i7lhmdy9zVdAk0=
|
||||
SIZE (ComputeLibrary-22.08.tar.gz) = 13257068
|
||||
SHA256 (ComputeLibrary-22.11.tar.gz) = 4goGDTxPgDiJ2WwvC4ZQBLo+9OIoKZpEM56hwbqCfIU=
|
||||
SIZE (ComputeLibrary-22.11.tar.gz) = 13316795
|
||||
|
@ -1,7 +1,7 @@
|
||||
Index: SConscript
|
||||
--- SConscript.orig
|
||||
+++ SConscript
|
||||
@@ -632,7 +632,7 @@ else:
|
||||
@@ -638,7 +638,7 @@ else:
|
||||
elif 'sve' in env['arch']:
|
||||
lib_files += lib_files_sve
|
||||
|
||||
@ -10,7 +10,7 @@ Index: SConscript
|
||||
|
||||
Export('arm_compute_a')
|
||||
|
||||
@@ -651,7 +651,7 @@ if env['os'] == 'macos':
|
||||
@@ -657,7 +657,7 @@ if env['os'] == 'macos':
|
||||
# macos static library archiver fails if given an empty list of files
|
||||
arm_compute_core_a = build_library('arm_compute_core-static', arm_compute_env, lib_files, static=True)
|
||||
else:
|
||||
@ -19,7 +19,7 @@ Index: SConscript
|
||||
|
||||
Export('arm_compute_core_a')
|
||||
|
||||
@@ -664,7 +664,7 @@ arm_compute_graph_env = arm_compute_env.Clone()
|
||||
@@ -670,7 +670,7 @@ arm_compute_graph_env = arm_compute_env.Clone()
|
||||
# Build graph libraries
|
||||
arm_compute_graph_env.Append(CXXFLAGS = ['-Wno-redundant-move', '-Wno-pessimizing-move'])
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
Index: SConstruct
|
||||
--- SConstruct.orig
|
||||
+++ SConstruct
|
||||
@@ -244,17 +244,8 @@ c_compiler = os.environ.get('CC', default_c_compiler)
|
||||
@@ -245,17 +245,8 @@ c_compiler = os.environ.get('CC', default_c_compiler)
|
||||
if env['os'] == 'android' and ( 'clang++' not in cpp_compiler or 'clang' not in c_compiler ):
|
||||
print( "WARNING: Only clang is officially supported to build the Compute Library for Android")
|
||||
|
||||
@ -20,7 +20,7 @@ Index: SConstruct
|
||||
if env['cppthreads']:
|
||||
env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])
|
||||
|
||||
@@ -406,25 +397,6 @@ if not GetOption("help"):
|
||||
@@ -407,25 +398,6 @@ if not GetOption("help"):
|
||||
except OSError:
|
||||
print("ERROR: Compiler '%s' not found" % env['CXX'])
|
||||
Exit(1)
|
||||
|
@ -0,0 +1,12 @@
|
||||
Index: include/libnpy/npy.hpp
|
||||
--- include/libnpy/npy.hpp.orig
|
||||
+++ include/libnpy/npy.hpp
|
||||
@@ -103,7 +103,7 @@ struct Typestring {
|
||||
inline std::string str() {
|
||||
const size_t max_buflen = 16;
|
||||
char buf[max_buflen];
|
||||
- std::sprintf(buf, "%c%c%u", c_endian, c_type, len);
|
||||
+ std::snprintf(buf, sizeof(buf), "%c%c%u", c_endian, c_type, len);
|
||||
return std::string(buf);
|
||||
}
|
||||
|
@ -113,6 +113,19 @@ include/arm_compute/core/utils/misc/Traits.h
|
||||
include/arm_compute/core/utils/misc/Utility.h
|
||||
include/arm_compute/core/utils/quantization/
|
||||
include/arm_compute/core/utils/quantization/AsymmHelpers.h
|
||||
include/arm_compute/dynamic_fusion/
|
||||
include/arm_compute/dynamic_fusion/runtime/
|
||||
include/arm_compute/dynamic_fusion/runtime/gpu/
|
||||
include/arm_compute/dynamic_fusion/runtime/gpu/cl/
|
||||
include/arm_compute/dynamic_fusion/runtime/gpu/cl/ClWorkloadRuntime.h
|
||||
include/arm_compute/dynamic_fusion/sketch/
|
||||
include/arm_compute/dynamic_fusion/sketch/MemoryDescriptor.h
|
||||
include/arm_compute/dynamic_fusion/sketch/OperatorAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/GpuWorkloadContext.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/GpuWorkloadSketch.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuConv2d.h
|
||||
include/arm_compute/graph/
|
||||
include/arm_compute/graph.h
|
||||
include/arm_compute/graph/DataLayerVisitor.h
|
||||
|
Loading…
x
Reference in New Issue
Block a user