sync ports with The Matrix
This commit is contained in:
parent
02776f1507
commit
a0fe1892c0
885 changed files with 6817 additions and 4874 deletions
|
@ -2,7 +2,7 @@ ONLY_FOR_ARCHS = aarch64
|
|||
|
||||
COMMENT = Arm compute library
|
||||
|
||||
V = 23.05.1
|
||||
V = 23.08
|
||||
PKGNAME = arm-compute-library-${V}
|
||||
|
||||
GH_ACCOUNT = ARM-software
|
||||
|
@ -16,8 +16,8 @@ HOMEPAGE = https://github.com/ARM-software/ComputeLibrary
|
|||
MAINTAINER = Kevin Lo <kevlo@openbsd.org>
|
||||
|
||||
CORE_SO_V = 2.0
|
||||
GRAPH_SO_V = 2.2
|
||||
COMPUTE_SO_V = 3.4
|
||||
GRAPH_SO_V = 2.3
|
||||
COMPUTE_SO_V = 3.5
|
||||
|
||||
SHARED_LIBS += arm_compute ${COMPUTE_SO_V}
|
||||
SHARED_LIBS += arm_compute_core ${CORE_SO_V}
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (ComputeLibrary-23.05.1.tar.gz) = xMoymnjaOAFjsthukbpyg0m28O6X1m4mCmlO838LDZM=
|
||||
SIZE (ComputeLibrary-23.05.1.tar.gz) = 13615969
|
||||
SHA256 (ComputeLibrary-23.08.tar.gz) = YvUUpVVAnUQB5SULKQzfjPFnbk63deW9YepqdAqM4k8=
|
||||
SIZE (ComputeLibrary-23.08.tar.gz) = 13902839
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Index: SConscript
|
||||
--- SConscript.orig
|
||||
+++ SConscript
|
||||
@@ -650,7 +650,7 @@ else:
|
||||
@@ -700,7 +700,7 @@ else:
|
||||
elif 'sve' in env['arch']:
|
||||
lib_files += lib_files_sve
|
||||
|
||||
|
@ -10,7 +10,7 @@ Index: SConscript
|
|||
|
||||
Export('arm_compute_a')
|
||||
|
||||
@@ -669,7 +669,7 @@ if env['os'] == 'macos':
|
||||
@@ -719,7 +719,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,12 +19,12 @@ Index: SConscript
|
|||
|
||||
Export('arm_compute_core_a')
|
||||
|
||||
@@ -682,7 +682,7 @@ arm_compute_graph_env = arm_compute_env.Clone()
|
||||
@@ -732,7 +732,7 @@ arm_compute_graph_env = arm_compute_env.Clone()
|
||||
# Build graph libraries
|
||||
arm_compute_graph_env.Append(CXXFLAGS = ['-Wno-redundant-move', '-Wno-pessimizing-move'])
|
||||
|
||||
-arm_compute_graph_a = build_library('arm_compute_graph-static', arm_compute_graph_env, graph_files, static=True, libs = [ arm_compute_a ])
|
||||
+arm_compute_graph_a = build_library('arm_compute_graph', arm_compute_graph_env, graph_files, static=True, libs = [ arm_compute_a ])
|
||||
-arm_compute_graph_a = build_library('arm_compute_graph-static', arm_compute_graph_env, graph_files, static=True)
|
||||
+arm_compute_graph_a = build_library('arm_compute_graph', arm_compute_graph_env, graph_files, static=True)
|
||||
Export('arm_compute_graph_a')
|
||||
|
||||
if env['os'] != 'bare_metal' and not env['standalone']:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Index: SConstruct
|
||||
--- SConstruct.orig
|
||||
+++ SConstruct
|
||||
@@ -253,17 +253,8 @@ c_compiler = os.environ.get('CC', default_c_compiler)
|
||||
@@ -258,17 +258,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)])
|
||||
|
||||
@@ -424,25 +415,6 @@ if not GetOption("help"):
|
||||
@@ -474,25 +465,6 @@ if not GetOption("help"):
|
||||
except OSError:
|
||||
print("ERROR: Compiler '%s' not found" % env['CXX'])
|
||||
Exit(1)
|
||||
|
|
|
@ -49,6 +49,7 @@ include/arm_compute/core/CPP/kernels/CPPPermuteKernel.h
|
|||
include/arm_compute/core/CPP/kernels/CPPTopKVKernel.h
|
||||
include/arm_compute/core/CPP/kernels/CPPUpsampleKernel.h
|
||||
include/arm_compute/core/Coordinates.h
|
||||
include/arm_compute/core/CoreTypes.h
|
||||
include/arm_compute/core/Dimensions.h
|
||||
include/arm_compute/core/Error.h
|
||||
include/arm_compute/core/GPUTarget.h
|
||||
|
@ -85,7 +86,14 @@ include/arm_compute/core/experimental/IPostOp.h
|
|||
include/arm_compute/core/experimental/PostOps.h
|
||||
include/arm_compute/core/experimental/Types.h
|
||||
include/arm_compute/core/utils/
|
||||
include/arm_compute/core/utils/ActivationFunctionUtils.h
|
||||
include/arm_compute/core/utils/DataLayoutUtils.h
|
||||
include/arm_compute/core/utils/DataTypeUtils.h
|
||||
include/arm_compute/core/utils/FormatUtils.h
|
||||
include/arm_compute/core/utils/InterpolationPolicyUtils.h
|
||||
include/arm_compute/core/utils/StringUtils.h
|
||||
include/arm_compute/core/utils/helpers/
|
||||
include/arm_compute/core/utils/helpers/AdjustVecSize.h
|
||||
include/arm_compute/core/utils/helpers/tensor_transform.h
|
||||
include/arm_compute/core/utils/io/
|
||||
include/arm_compute/core/utils/io/FileHandler.h
|
||||
|
@ -101,6 +109,7 @@ include/arm_compute/core/utils/logging/Printers.h
|
|||
include/arm_compute/core/utils/logging/StdPrinter.h
|
||||
include/arm_compute/core/utils/logging/Types.h
|
||||
include/arm_compute/core/utils/math/
|
||||
include/arm_compute/core/utils/math/Math.h
|
||||
include/arm_compute/core/utils/math/SafeOps.h
|
||||
include/arm_compute/core/utils/misc/
|
||||
include/arm_compute/core/utils/misc/InfoHelpers.h
|
||||
|
@ -145,6 +154,12 @@ include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuSigmoid.h
|
|||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuSoftmax.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuSub.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuTanh.h
|
||||
include/arm_compute/function_info/
|
||||
include/arm_compute/function_info/ActivationLayerInfo.h
|
||||
include/arm_compute/function_info/ConvolutionInfo.h
|
||||
include/arm_compute/function_info/FullyConnectedLayerInfo.h
|
||||
include/arm_compute/function_info/GEMMInfo.h
|
||||
include/arm_compute/function_info/MatMulInfo.h
|
||||
include/arm_compute/graph/
|
||||
include/arm_compute/graph.h
|
||||
include/arm_compute/graph/DataLayerVisitor.h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue