SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
63
devel/arm-compute-library/Makefile
Normal file
63
devel/arm-compute-library/Makefile
Normal file
|
@ -0,0 +1,63 @@
|
|||
ONLY_FOR_ARCHS = aarch64
|
||||
|
||||
COMMENT = Arm compute library
|
||||
|
||||
V = 23.05.1
|
||||
PKGNAME = arm-compute-library-${V}
|
||||
|
||||
GH_ACCOUNT = ARM-software
|
||||
GH_PROJECT = ComputeLibrary
|
||||
GH_TAGNAME = v${V}
|
||||
|
||||
CATEGORIES = devel
|
||||
|
||||
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
|
||||
|
||||
SHARED_LIBS += arm_compute ${COMPUTE_SO_V}
|
||||
SHARED_LIBS += arm_compute_core ${CORE_SO_V}
|
||||
SHARED_LIBS += arm_compute_graph ${GRAPH_SO_V}
|
||||
|
||||
# MIT
|
||||
PERMIT_PACKAGE= Yes
|
||||
|
||||
WANTLIB += ${COMPILER_LIBCXX} c m
|
||||
|
||||
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=armv8a build=native
|
||||
|
||||
MODULES = devel/scons
|
||||
|
||||
MAKE_ENV = CC="${CC}" \
|
||||
CXX="${CXX}"
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MODSCONS_BIN} ${MODSCONS_FLAGS}
|
||||
|
||||
do-install:
|
||||
.for dir in arm_compute support utils
|
||||
cp -R ${WRKSRC}/${dir} ${PREFIX}/include
|
||||
.endfor
|
||||
cp -R ${WRKSRC}/include/* ${PREFIX}/include
|
||||
${INSTALL_DATA} ${WRKSRC}/build/libarm_compute.so \
|
||||
${PREFIX}/lib/libarm_compute.so.${COMPUTE_SO_V}
|
||||
${INSTALL_DATA} ${WRKSRC}/build/libarm_compute_core.so \
|
||||
${PREFIX}/lib/libarm_compute_core.so.${CORE_SO_V}
|
||||
${INSTALL_DATA} ${WRKSRC}/build/libarm_compute_graph.so \
|
||||
${PREFIX}/lib/libarm_compute_graph.so.${GRAPH_SO_V}
|
||||
${INSTALL_DATA} ${WRKSRC}/build/*.a ${PREFIX}/lib
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/arm-compute-library
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/*.{h,cpp} \
|
||||
${PREFIX}/share/examples/arm-compute-library
|
||||
cp -R ${WRKSRC}/examples/gemm_tuner \
|
||||
${PREFIX}/share/examples/arm-compute-library
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/arm-compute-library/distinfo
Normal file
2
devel/arm-compute-library/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (ComputeLibrary-23.05.1.tar.gz) = xMoymnjaOAFjsthukbpyg0m28O6X1m4mCmlO838LDZM=
|
||||
SIZE (ComputeLibrary-23.05.1.tar.gz) = 13615969
|
30
devel/arm-compute-library/patches/patch-SConscript
Normal file
30
devel/arm-compute-library/patches/patch-SConscript
Normal file
|
@ -0,0 +1,30 @@
|
|||
Index: SConscript
|
||||
--- SConscript.orig
|
||||
+++ SConscript
|
||||
@@ -650,7 +650,7 @@ else:
|
||||
elif 'sve' in env['arch']:
|
||||
lib_files += lib_files_sve
|
||||
|
||||
- arm_compute_a = build_library('arm_compute-static', arm_compute_env, lib_files, static=True)
|
||||
+ arm_compute_a = build_library('arm_compute', arm_compute_env, lib_files, static=True)
|
||||
|
||||
Export('arm_compute_a')
|
||||
|
||||
@@ -669,7 +669,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:
|
||||
- arm_compute_core_a = build_library('arm_compute_core-static', arm_compute_env, [], static=True)
|
||||
+ arm_compute_core_a = build_library('arm_compute_core', arm_compute_env, [], static=True)
|
||||
|
||||
Export('arm_compute_core_a')
|
||||
|
||||
@@ -682,7 +682,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 ])
|
||||
Export('arm_compute_graph_a')
|
||||
|
||||
if env['os'] != 'bare_metal' and not env['standalone']:
|
48
devel/arm-compute-library/patches/patch-SConstruct
Normal file
48
devel/arm-compute-library/patches/patch-SConstruct
Normal file
|
@ -0,0 +1,48 @@
|
|||
Index: SConstruct
|
||||
--- SConstruct.orig
|
||||
+++ SConstruct
|
||||
@@ -253,17 +253,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")
|
||||
|
||||
-if 'clang++' in cpp_compiler:
|
||||
- env.Append(CXXFLAGS = ['-Wno-vla-extension'])
|
||||
-elif 'armclang' in cpp_compiler:
|
||||
- pass
|
||||
-elif not 'windows' in env['os']:
|
||||
- env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel','-Wno-misleading-indentation'])
|
||||
+env.Append(CXXFLAGS = ['-Wno-vla-extension'])
|
||||
|
||||
-if cpp_compiler == 'g++':
|
||||
- # Don't strip comments that could include markers
|
||||
- env.Append(CXXFLAGS = ['-C'])
|
||||
-
|
||||
if env['cppthreads']:
|
||||
env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])
|
||||
|
||||
@@ -424,25 +415,6 @@ if not GetOption("help"):
|
||||
except OSError:
|
||||
print("ERROR: Compiler '%s' not found" % env['CXX'])
|
||||
Exit(1)
|
||||
-
|
||||
- if 'armclang' in cpp_compiler:
|
||||
- pass
|
||||
- elif 'clang++' not in cpp_compiler:
|
||||
- if env['arch'] == 'arm64-v8.2-a' and not version_at_least(compiler_ver, '6.2.1'):
|
||||
- print("GCC 6.2.1 or newer is required to compile armv8.2-a code")
|
||||
- Exit(1)
|
||||
- elif env['arch'] == 'arm64-v8a' and not version_at_least(compiler_ver, '4.9'):
|
||||
- print("GCC 4.9 or newer is required to compile Arm® Neon™ code for AArch64")
|
||||
- Exit(1)
|
||||
-
|
||||
- if version_at_least(compiler_ver, '6.1'):
|
||||
- env.Append(CXXFLAGS = ['-Wno-ignored-attributes'])
|
||||
-
|
||||
- if compiler_ver == '4.8.3':
|
||||
- env.Append(CXXFLAGS = ['-Wno-array-bounds'])
|
||||
-
|
||||
- if not version_at_least(compiler_ver, '7.0.0') and env['os'] == 'bare_metal':
|
||||
- env.Append(LINKFLAGS = ['-fstack-protector-strong'])
|
||||
|
||||
# Add Android NDK toolchain specific flags
|
||||
if 'clang++' in cpp_compiler and env['os'] == 'android':
|
4
devel/arm-compute-library/pkg/DESCR
Normal file
4
devel/arm-compute-library/pkg/DESCR
Normal file
|
@ -0,0 +1,4 @@
|
|||
Arm Compute Library is a software library for computer vision and machine
|
||||
learning. It is a collection of low-level functions optimized for Arm CPU
|
||||
and GPU architectures targeted at image processing, computer vision, and
|
||||
machine learning.
|
627
devel/arm-compute-library/pkg/PLIST
Normal file
627
devel/arm-compute-library/pkg/PLIST
Normal file
|
@ -0,0 +1,627 @@
|
|||
include/BUILD.bazel
|
||||
include/CL/
|
||||
include/CL/cl.h
|
||||
include/CL/cl_d3d10.h
|
||||
include/CL/cl_d3d11.h
|
||||
include/CL/cl_dx9_media_sharing.h
|
||||
include/CL/cl_dx9_media_sharing_intel.h
|
||||
include/CL/cl_egl.h
|
||||
include/CL/cl_ext.h
|
||||
include/CL/cl_ext_intel.h
|
||||
include/CL/cl_gl.h
|
||||
include/CL/cl_gl_ext.h
|
||||
include/CL/cl_half.h
|
||||
include/CL/cl_icd.h
|
||||
include/CL/cl_platform.h
|
||||
include/CL/cl_va_api_media_sharing_intel.h
|
||||
include/CL/cl_version.h
|
||||
include/CL/opencl.h
|
||||
include/CL/opencl.hpp
|
||||
include/arm_compute/
|
||||
include/arm_compute/Acl.h
|
||||
include/arm_compute/Acl.hpp
|
||||
include/arm_compute/AclDescriptors.h
|
||||
include/arm_compute/AclEntrypoints.h
|
||||
include/arm_compute/AclOpenClExt.h
|
||||
include/arm_compute/AclOperators.h
|
||||
include/arm_compute/AclTypes.h
|
||||
include/arm_compute/AclUtils.h
|
||||
include/arm_compute/AclVersion.h
|
||||
include/arm_compute/BUILD.bazel
|
||||
include/arm_compute/core/
|
||||
include/arm_compute/core/CL/
|
||||
include/arm_compute/core/CL/CLCompileContext.h
|
||||
include/arm_compute/core/CL/CLDevice.h
|
||||
include/arm_compute/core/CL/CLHelpers.h
|
||||
include/arm_compute/core/CL/CLKernelLibrary.h
|
||||
include/arm_compute/core/CL/CLTypes.h
|
||||
include/arm_compute/core/CL/ICLArray.h
|
||||
include/arm_compute/core/CL/ICLTensor.h
|
||||
include/arm_compute/core/CL/OpenCL.h
|
||||
include/arm_compute/core/CPP/
|
||||
include/arm_compute/core/CPP/CPPKernels.h
|
||||
include/arm_compute/core/CPP/CPPTypes.h
|
||||
include/arm_compute/core/CPP/ICPPKernel.h
|
||||
include/arm_compute/core/CPP/kernels/
|
||||
include/arm_compute/core/CPP/kernels/CPPBoxWithNonMaximaSuppressionLimitKernel.h
|
||||
include/arm_compute/core/CPP/kernels/CPPNonMaximumSuppressionKernel.h
|
||||
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/Dimensions.h
|
||||
include/arm_compute/core/Error.h
|
||||
include/arm_compute/core/GPUTarget.h
|
||||
include/arm_compute/core/Helpers.h
|
||||
include/arm_compute/core/Helpers.inl
|
||||
include/arm_compute/core/IAccessWindow.h
|
||||
include/arm_compute/core/IArray.h
|
||||
include/arm_compute/core/IDevice.h
|
||||
include/arm_compute/core/IKernel.h
|
||||
include/arm_compute/core/ITensor.h
|
||||
include/arm_compute/core/ITensorInfo.h
|
||||
include/arm_compute/core/ITensorPack.h
|
||||
include/arm_compute/core/KernelDescriptors.h
|
||||
include/arm_compute/core/Log.h
|
||||
include/arm_compute/core/PixelValue.h
|
||||
include/arm_compute/core/QuantizationInfo.h
|
||||
include/arm_compute/core/Rounding.h
|
||||
include/arm_compute/core/Size2D.h
|
||||
include/arm_compute/core/Size3D.h
|
||||
include/arm_compute/core/Steps.h
|
||||
include/arm_compute/core/Strides.h
|
||||
include/arm_compute/core/SubTensorInfo.h
|
||||
include/arm_compute/core/TensorInfo.h
|
||||
include/arm_compute/core/TensorShape.h
|
||||
include/arm_compute/core/Types.h
|
||||
include/arm_compute/core/Utils.h
|
||||
include/arm_compute/core/Validate.h
|
||||
include/arm_compute/core/Version.h
|
||||
include/arm_compute/core/Window.h
|
||||
include/arm_compute/core/Window.inl
|
||||
include/arm_compute/core/WindowIterator.h
|
||||
include/arm_compute/core/experimental/
|
||||
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/helpers/
|
||||
include/arm_compute/core/utils/helpers/tensor_transform.h
|
||||
include/arm_compute/core/utils/io/
|
||||
include/arm_compute/core/utils/io/FileHandler.h
|
||||
include/arm_compute/core/utils/logging/
|
||||
include/arm_compute/core/utils/logging/FilePrinter.h
|
||||
include/arm_compute/core/utils/logging/Helpers.h
|
||||
include/arm_compute/core/utils/logging/IPrinter.h
|
||||
include/arm_compute/core/utils/logging/LogMsgDecorators.h
|
||||
include/arm_compute/core/utils/logging/Logger.h
|
||||
include/arm_compute/core/utils/logging/LoggerRegistry.h
|
||||
include/arm_compute/core/utils/logging/Macros.h
|
||||
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/SafeOps.h
|
||||
include/arm_compute/core/utils/misc/
|
||||
include/arm_compute/core/utils/misc/InfoHelpers.h
|
||||
include/arm_compute/core/utils/misc/MMappedFile.h
|
||||
include/arm_compute/core/utils/misc/Macros.h
|
||||
include/arm_compute/core/utils/misc/ShapeCalculator.h
|
||||
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/attributes/
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/CastAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/ClampAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/Conv2dAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/DepthwiseConv2dAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/Pool2dAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/ReshapeAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/ResizeAttributes.h
|
||||
include/arm_compute/dynamic_fusion/sketch/attributes/SoftmaxAttributes.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/GpuAdd.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuCast.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuClamp.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuConv2d.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuDepthwiseConv2d.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuMul.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuOutput.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuPool2d.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuReshape.h
|
||||
include/arm_compute/dynamic_fusion/sketch/gpu/operators/GpuResize.h
|
||||
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/graph/
|
||||
include/arm_compute/graph.h
|
||||
include/arm_compute/graph/DataLayerVisitor.h
|
||||
include/arm_compute/graph/Edge.h
|
||||
include/arm_compute/graph/Graph.h
|
||||
include/arm_compute/graph/GraphBuilder.h
|
||||
include/arm_compute/graph/GraphContext.h
|
||||
include/arm_compute/graph/GraphManager.h
|
||||
include/arm_compute/graph/IDeviceBackend.h
|
||||
include/arm_compute/graph/IGraphMutator.h
|
||||
include/arm_compute/graph/IGraphPrinter.h
|
||||
include/arm_compute/graph/INode.h
|
||||
include/arm_compute/graph/INodeVisitor.h
|
||||
include/arm_compute/graph/ITensorAccessor.h
|
||||
include/arm_compute/graph/ITensorHandle.h
|
||||
include/arm_compute/graph/LayerDescriptors.h
|
||||
include/arm_compute/graph/Logger.h
|
||||
include/arm_compute/graph/PassManager.h
|
||||
include/arm_compute/graph/Tensor.h
|
||||
include/arm_compute/graph/TensorDescriptor.h
|
||||
include/arm_compute/graph/TypeLoader.h
|
||||
include/arm_compute/graph/TypePrinter.h
|
||||
include/arm_compute/graph/Types.h
|
||||
include/arm_compute/graph/Utils.h
|
||||
include/arm_compute/graph/Workload.h
|
||||
include/arm_compute/graph/algorithms/
|
||||
include/arm_compute/graph/algorithms/Algorithms.h
|
||||
include/arm_compute/graph/algorithms/TopologicalSort.h
|
||||
include/arm_compute/graph/backends/
|
||||
include/arm_compute/graph/backends/BackendRegistrar.h
|
||||
include/arm_compute/graph/backends/BackendRegistry.h
|
||||
include/arm_compute/graph/backends/CL/
|
||||
include/arm_compute/graph/backends/CL/CLDeviceBackend.h
|
||||
include/arm_compute/graph/backends/CL/CLFunctionFactory.h
|
||||
include/arm_compute/graph/backends/CL/CLNodeValidator.h
|
||||
include/arm_compute/graph/backends/CL/CLSubTensorHandle.h
|
||||
include/arm_compute/graph/backends/CL/CLTensorHandle.h
|
||||
include/arm_compute/graph/backends/FunctionHelpers.h
|
||||
include/arm_compute/graph/backends/FusedConvolutionBatchNormalizationFunction.h
|
||||
include/arm_compute/graph/backends/FusedConvolutionBatchNormalizationWithPostOpsFunction.h
|
||||
include/arm_compute/graph/backends/FusedDepthwiseConvolutionBatchNormalizationFunction.h
|
||||
include/arm_compute/graph/backends/NEON/
|
||||
include/arm_compute/graph/backends/NEON/NEDeviceBackend.h
|
||||
include/arm_compute/graph/backends/NEON/NEFunctionFactory.h
|
||||
include/arm_compute/graph/backends/NEON/NENodeValidator.h
|
||||
include/arm_compute/graph/backends/NEON/NESubTensorHandle.h
|
||||
include/arm_compute/graph/backends/NEON/NETensorHandle.h
|
||||
include/arm_compute/graph/backends/Utils.h
|
||||
include/arm_compute/graph/backends/ValidateHelpers.h
|
||||
include/arm_compute/graph/detail/
|
||||
include/arm_compute/graph/detail/CrossLayerMemoryManagerHelpers.h
|
||||
include/arm_compute/graph/detail/ExecutionHelpers.h
|
||||
include/arm_compute/graph/frontend/
|
||||
include/arm_compute/graph/frontend/ILayer.h
|
||||
include/arm_compute/graph/frontend/IStream.h
|
||||
include/arm_compute/graph/frontend/IStreamOperators.h
|
||||
include/arm_compute/graph/frontend/Layers.h
|
||||
include/arm_compute/graph/frontend/Stream.h
|
||||
include/arm_compute/graph/frontend/SubStream.h
|
||||
include/arm_compute/graph/frontend/Types.h
|
||||
include/arm_compute/graph/mutators/
|
||||
include/arm_compute/graph/mutators/DepthConcatSubTensorMutator.h
|
||||
include/arm_compute/graph/mutators/GraphMutators.h
|
||||
include/arm_compute/graph/mutators/GroupedConvolutionMutator.h
|
||||
include/arm_compute/graph/mutators/InPlaceOperationMutator.h
|
||||
include/arm_compute/graph/mutators/NodeExecutionMethodMutator.h
|
||||
include/arm_compute/graph/mutators/NodeFusionMutator.h
|
||||
include/arm_compute/graph/mutators/SplitLayerSubTensorMutator.h
|
||||
include/arm_compute/graph/mutators/SyntheticDataTypeMutator.h
|
||||
include/arm_compute/graph/nodes/
|
||||
include/arm_compute/graph/nodes/ActivationLayerNode.h
|
||||
include/arm_compute/graph/nodes/ArgMinMaxLayerNode.h
|
||||
include/arm_compute/graph/nodes/BatchNormalizationLayerNode.h
|
||||
include/arm_compute/graph/nodes/BoundingBoxTransformLayerNode.h
|
||||
include/arm_compute/graph/nodes/ChannelShuffleLayerNode.h
|
||||
include/arm_compute/graph/nodes/ConcatenateLayerNode.h
|
||||
include/arm_compute/graph/nodes/ConstNode.h
|
||||
include/arm_compute/graph/nodes/ConvolutionLayerNode.h
|
||||
include/arm_compute/graph/nodes/DeconvolutionLayerNode.h
|
||||
include/arm_compute/graph/nodes/DepthToSpaceLayerNode.h
|
||||
include/arm_compute/graph/nodes/DepthwiseConvolutionLayerNode.h
|
||||
include/arm_compute/graph/nodes/DequantizationLayerNode.h
|
||||
include/arm_compute/graph/nodes/DetectionOutputLayerNode.h
|
||||
include/arm_compute/graph/nodes/DetectionPostProcessLayerNode.h
|
||||
include/arm_compute/graph/nodes/DummyNode.h
|
||||
include/arm_compute/graph/nodes/EltwiseLayerNode.h
|
||||
include/arm_compute/graph/nodes/FlattenLayerNode.h
|
||||
include/arm_compute/graph/nodes/FullyConnectedLayerNode.h
|
||||
include/arm_compute/graph/nodes/FusedConvolutionBatchNormalizationNode.h
|
||||
include/arm_compute/graph/nodes/FusedConvolutionBatchNormalizationWithPostOpsNode.h
|
||||
include/arm_compute/graph/nodes/FusedConvolutionWithPostOpNode.h
|
||||
include/arm_compute/graph/nodes/FusedDepthwiseConvolutionBatchNormalizationNode.h
|
||||
include/arm_compute/graph/nodes/GenerateProposalsLayerNode.h
|
||||
include/arm_compute/graph/nodes/InputNode.h
|
||||
include/arm_compute/graph/nodes/L2NormalizeLayerNode.h
|
||||
include/arm_compute/graph/nodes/Nodes.h
|
||||
include/arm_compute/graph/nodes/NodesFwd.h
|
||||
include/arm_compute/graph/nodes/NormalizationLayerNode.h
|
||||
include/arm_compute/graph/nodes/NormalizePlanarYUVLayerNode.h
|
||||
include/arm_compute/graph/nodes/OutputNode.h
|
||||
include/arm_compute/graph/nodes/PReluLayerNode.h
|
||||
include/arm_compute/graph/nodes/PadLayerNode.h
|
||||
include/arm_compute/graph/nodes/PermuteLayerNode.h
|
||||
include/arm_compute/graph/nodes/PoolingLayerNode.h
|
||||
include/arm_compute/graph/nodes/PrintLayerNode.h
|
||||
include/arm_compute/graph/nodes/PriorBoxLayerNode.h
|
||||
include/arm_compute/graph/nodes/QuantizationLayerNode.h
|
||||
include/arm_compute/graph/nodes/ROIAlignLayerNode.h
|
||||
include/arm_compute/graph/nodes/ReductionLayerNode.h
|
||||
include/arm_compute/graph/nodes/ReorgLayerNode.h
|
||||
include/arm_compute/graph/nodes/ReshapeLayerNode.h
|
||||
include/arm_compute/graph/nodes/ResizeLayerNode.h
|
||||
include/arm_compute/graph/nodes/SliceLayerNode.h
|
||||
include/arm_compute/graph/nodes/SoftmaxLayerNode.h
|
||||
include/arm_compute/graph/nodes/SplitLayerNode.h
|
||||
include/arm_compute/graph/nodes/StackLayerNode.h
|
||||
include/arm_compute/graph/nodes/StridedSliceLayerNode.h
|
||||
include/arm_compute/graph/printers/
|
||||
include/arm_compute/graph/printers/DotGraphPrinter.h
|
||||
include/arm_compute/graph/printers/Printers.h
|
||||
include/arm_compute/runtime/
|
||||
include/arm_compute/runtime/Allocator.h
|
||||
include/arm_compute/runtime/Array.h
|
||||
include/arm_compute/runtime/BlobLifetimeManager.h
|
||||
include/arm_compute/runtime/BlobMemoryPool.h
|
||||
include/arm_compute/runtime/CL/
|
||||
include/arm_compute/runtime/CL/CLArray.h
|
||||
include/arm_compute/runtime/CL/CLBufferAllocator.h
|
||||
include/arm_compute/runtime/CL/CLFunctions.h
|
||||
include/arm_compute/runtime/CL/CLGEMMHeuristicsHandle.h
|
||||
include/arm_compute/runtime/CL/CLHelpers.h
|
||||
include/arm_compute/runtime/CL/CLMemory.h
|
||||
include/arm_compute/runtime/CL/CLMemoryRegion.h
|
||||
include/arm_compute/runtime/CL/CLRuntimeContext.h
|
||||
include/arm_compute/runtime/CL/CLScheduler.h
|
||||
include/arm_compute/runtime/CL/CLSubTensor.h
|
||||
include/arm_compute/runtime/CL/CLTensor.h
|
||||
include/arm_compute/runtime/CL/CLTensorAllocator.h
|
||||
include/arm_compute/runtime/CL/CLTuner.h
|
||||
include/arm_compute/runtime/CL/CLTunerTypes.h
|
||||
include/arm_compute/runtime/CL/CLTuningParams.h
|
||||
include/arm_compute/runtime/CL/CLTypes.h
|
||||
include/arm_compute/runtime/CL/ICLGEMMKernelSelection.h
|
||||
include/arm_compute/runtime/CL/ICLOperator.h
|
||||
include/arm_compute/runtime/CL/ICLSimpleFunction.h
|
||||
include/arm_compute/runtime/CL/ICLTuner.h
|
||||
include/arm_compute/runtime/CL/Utils.h
|
||||
include/arm_compute/runtime/CL/functions/
|
||||
include/arm_compute/runtime/CL/functions/CLActivationLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLArgMinMaxLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLBatchNormalizationLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLBatchToSpaceLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLBitwiseAnd.h
|
||||
include/arm_compute/runtime/CL/functions/CLBitwiseNot.h
|
||||
include/arm_compute/runtime/CL/functions/CLBitwiseOr.h
|
||||
include/arm_compute/runtime/CL/functions/CLBitwiseXor.h
|
||||
include/arm_compute/runtime/CL/functions/CLBoundingBoxTransform.h
|
||||
include/arm_compute/runtime/CL/functions/CLCast.h
|
||||
include/arm_compute/runtime/CL/functions/CLChannelShuffleLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLComparison.h
|
||||
include/arm_compute/runtime/CL/functions/CLConcatenateLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLConv3D.h
|
||||
include/arm_compute/runtime/CL/functions/CLConvertFullyConnectedWeights.h
|
||||
include/arm_compute/runtime/CL/functions/CLConvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLCopy.h
|
||||
include/arm_compute/runtime/CL/functions/CLCrop.h
|
||||
include/arm_compute/runtime/CL/functions/CLCropResize.h
|
||||
include/arm_compute/runtime/CL/functions/CLDeconvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLDeconvolutionLayerUpsample.h
|
||||
include/arm_compute/runtime/CL/functions/CLDepthConvertLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLDepthToSpaceLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLDepthwiseConvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLDequantizationLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLDirectConvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLDirectDeconvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLElementwiseOperations.h
|
||||
include/arm_compute/runtime/CL/functions/CLElementwiseUnaryLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLFFT1D.h
|
||||
include/arm_compute/runtime/CL/functions/CLFFT2D.h
|
||||
include/arm_compute/runtime/CL/functions/CLFFTConvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLFill.h
|
||||
include/arm_compute/runtime/CL/functions/CLFlattenLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLFloor.h
|
||||
include/arm_compute/runtime/CL/functions/CLFullyConnectedLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLFuseBatchNormalization.h
|
||||
include/arm_compute/runtime/CL/functions/CLGEMM.h
|
||||
include/arm_compute/runtime/CL/functions/CLGEMMConvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLGEMMDeconvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.h
|
||||
include/arm_compute/runtime/CL/functions/CLGEMMLowpOutputStage.h
|
||||
include/arm_compute/runtime/CL/functions/CLGather.h
|
||||
include/arm_compute/runtime/CL/functions/CLGenerateProposalsLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLIndirectConvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLInstanceNormalizationLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLL2NormalizeLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLLSTMLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLLSTMLayerQuantized.h
|
||||
include/arm_compute/runtime/CL/functions/CLLogicalAnd.h
|
||||
include/arm_compute/runtime/CL/functions/CLLogicalNot.h
|
||||
include/arm_compute/runtime/CL/functions/CLLogicalOr.h
|
||||
include/arm_compute/runtime/CL/functions/CLMatMul.h
|
||||
include/arm_compute/runtime/CL/functions/CLMaxUnpoolingLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLMeanStdDevNormalizationLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLNormalizationLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLNormalizePlanarYUVLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLPReluLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLPadLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLPermute.h
|
||||
include/arm_compute/runtime/CL/functions/CLPixelWiseMultiplication.h
|
||||
include/arm_compute/runtime/CL/functions/CLPooling3dLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLPoolingLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLPriorBoxLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLQLSTMLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLQuantizationLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLRNNLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLROIAlignLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLROIPoolingLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLRange.h
|
||||
include/arm_compute/runtime/CL/functions/CLReduceMean.h
|
||||
include/arm_compute/runtime/CL/functions/CLReductionOperation.h
|
||||
include/arm_compute/runtime/CL/functions/CLReorgLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLReshapeLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLReverse.h
|
||||
include/arm_compute/runtime/CL/functions/CLScale.h
|
||||
include/arm_compute/runtime/CL/functions/CLSelect.h
|
||||
include/arm_compute/runtime/CL/functions/CLSlice.h
|
||||
include/arm_compute/runtime/CL/functions/CLSoftmaxLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLSpaceToBatchLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLSpaceToDepthLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLSplit.h
|
||||
include/arm_compute/runtime/CL/functions/CLStackLayer.h
|
||||
include/arm_compute/runtime/CL/functions/CLStridedSlice.h
|
||||
include/arm_compute/runtime/CL/functions/CLTile.h
|
||||
include/arm_compute/runtime/CL/functions/CLTranspose.h
|
||||
include/arm_compute/runtime/CL/functions/CLUnstack.h
|
||||
include/arm_compute/runtime/CL/functions/CLWinogradConvolutionLayer.h
|
||||
include/arm_compute/runtime/CL/tuners/
|
||||
include/arm_compute/runtime/CL/tuners/CLTuningParametersList.h
|
||||
include/arm_compute/runtime/CPP/
|
||||
include/arm_compute/runtime/CPP/CPPFunctions.h
|
||||
include/arm_compute/runtime/CPP/CPPScheduler.h
|
||||
include/arm_compute/runtime/CPP/ICPPSimpleFunction.h
|
||||
include/arm_compute/runtime/CPP/functions/
|
||||
include/arm_compute/runtime/CPP/functions/CPPBoxWithNonMaximaSuppressionLimit.h
|
||||
include/arm_compute/runtime/CPP/functions/CPPDetectionOutputLayer.h
|
||||
include/arm_compute/runtime/CPP/functions/CPPDetectionPostProcessLayer.h
|
||||
include/arm_compute/runtime/CPP/functions/CPPNonMaximumSuppression.h
|
||||
include/arm_compute/runtime/CPP/functions/CPPPermute.h
|
||||
include/arm_compute/runtime/CPP/functions/CPPSplit.h
|
||||
include/arm_compute/runtime/CPP/functions/CPPTopKV.h
|
||||
include/arm_compute/runtime/CPP/functions/CPPUpsample.h
|
||||
include/arm_compute/runtime/FunctionDescriptors.h
|
||||
include/arm_compute/runtime/IAllocator.h
|
||||
include/arm_compute/runtime/IAssetManager.h
|
||||
include/arm_compute/runtime/IFunction.h
|
||||
include/arm_compute/runtime/ILifetimeManager.h
|
||||
include/arm_compute/runtime/IMemory.h
|
||||
include/arm_compute/runtime/IMemoryGroup.h
|
||||
include/arm_compute/runtime/IMemoryManager.h
|
||||
include/arm_compute/runtime/IMemoryPool.h
|
||||
include/arm_compute/runtime/IMemoryRegion.h
|
||||
include/arm_compute/runtime/IOperator.h
|
||||
include/arm_compute/runtime/IPoolManager.h
|
||||
include/arm_compute/runtime/IRuntimeContext.h
|
||||
include/arm_compute/runtime/IScheduler.h
|
||||
include/arm_compute/runtime/ISimpleLifetimeManager.h
|
||||
include/arm_compute/runtime/ITensorAllocator.h
|
||||
include/arm_compute/runtime/ITransformWeights.h
|
||||
include/arm_compute/runtime/IWeightsManager.h
|
||||
include/arm_compute/runtime/Memory.h
|
||||
include/arm_compute/runtime/MemoryGroup.h
|
||||
include/arm_compute/runtime/MemoryManagerOnDemand.h
|
||||
include/arm_compute/runtime/MemoryRegion.h
|
||||
include/arm_compute/runtime/NEON/
|
||||
include/arm_compute/runtime/NEON/INEOperator.h
|
||||
include/arm_compute/runtime/NEON/INESimpleFunction.h
|
||||
include/arm_compute/runtime/NEON/INESimpleFunctionNoBorder.h
|
||||
include/arm_compute/runtime/NEON/NEFunctions.h
|
||||
include/arm_compute/runtime/NEON/NEScheduler.h
|
||||
include/arm_compute/runtime/NEON/functions/
|
||||
include/arm_compute/runtime/NEON/functions/NEActivationLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEAddMulAdd.h
|
||||
include/arm_compute/runtime/NEON/functions/NEArgMinMaxLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEArithmeticAddition.h
|
||||
include/arm_compute/runtime/NEON/functions/NEArithmeticSubtraction.h
|
||||
include/arm_compute/runtime/NEON/functions/NEBatchNormalizationLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEBatchToSpaceLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEBitwiseAnd.h
|
||||
include/arm_compute/runtime/NEON/functions/NEBitwiseNot.h
|
||||
include/arm_compute/runtime/NEON/functions/NEBitwiseOr.h
|
||||
include/arm_compute/runtime/NEON/functions/NEBitwiseXor.h
|
||||
include/arm_compute/runtime/NEON/functions/NEBoundingBoxTransform.h
|
||||
include/arm_compute/runtime/NEON/functions/NECast.h
|
||||
include/arm_compute/runtime/NEON/functions/NEChannelShuffleLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEConcatenateLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEConv3D.h
|
||||
include/arm_compute/runtime/NEON/functions/NEConvertFullyConnectedWeights.h
|
||||
include/arm_compute/runtime/NEON/functions/NEConvolutionLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NECopy.h
|
||||
include/arm_compute/runtime/NEON/functions/NECropResize.h
|
||||
include/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEDepthConvertLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEDepthToSpaceLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEDepthwiseConvolutionLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEDequantizationLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEDetectionPostProcessLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEDirectConvolutionLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEElementwiseOperations.h
|
||||
include/arm_compute/runtime/NEON/functions/NEElementwiseUnaryLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFFT1D.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFFT2D.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFFTConvolutionLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFill.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFillBorder.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFlattenLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFloor.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFullyConnectedLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEFuseBatchNormalization.h
|
||||
include/arm_compute/runtime/NEON/functions/NEGEMM.h
|
||||
include/arm_compute/runtime/NEON/functions/NEGEMMConv2d.h
|
||||
include/arm_compute/runtime/NEON/functions/NEGEMMConvolutionLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.h
|
||||
include/arm_compute/runtime/NEON/functions/NEGEMMLowpOutputStage.h
|
||||
include/arm_compute/runtime/NEON/functions/NEGather.h
|
||||
include/arm_compute/runtime/NEON/functions/NEGenerateProposalsLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEInstanceNormalizationLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEL2NormalizeLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NELSTMLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NELSTMLayerQuantized.h
|
||||
include/arm_compute/runtime/NEON/functions/NELogical.h
|
||||
include/arm_compute/runtime/NEON/functions/NEMatMul.h
|
||||
include/arm_compute/runtime/NEON/functions/NEMaxUnpoolingLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEMeanStdDevNormalizationLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NENormalizationLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEPReluLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEPadLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEPermute.h
|
||||
include/arm_compute/runtime/NEON/functions/NEPixelWiseMultiplication.h
|
||||
include/arm_compute/runtime/NEON/functions/NEPooling3dLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEPoolingLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEPriorBoxLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEQLSTMLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEQuantizationLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NERNNLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEROIAlignLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEROIPoolingLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NERange.h
|
||||
include/arm_compute/runtime/NEON/functions/NEReduceMean.h
|
||||
include/arm_compute/runtime/NEON/functions/NEReductionOperation.h
|
||||
include/arm_compute/runtime/NEON/functions/NEReorderLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEReorgLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEReshapeLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEReverse.h
|
||||
include/arm_compute/runtime/NEON/functions/NEScale.h
|
||||
include/arm_compute/runtime/NEON/functions/NESelect.h
|
||||
include/arm_compute/runtime/NEON/functions/NESlice.h
|
||||
include/arm_compute/runtime/NEON/functions/NESoftmaxLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NESpaceToBatchLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NESpaceToDepthLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NESplit.h
|
||||
include/arm_compute/runtime/NEON/functions/NEStackLayer.h
|
||||
include/arm_compute/runtime/NEON/functions/NEStridedSlice.h
|
||||
include/arm_compute/runtime/NEON/functions/NETile.h
|
||||
include/arm_compute/runtime/NEON/functions/NETranspose.h
|
||||
include/arm_compute/runtime/NEON/functions/NEUnstack.h
|
||||
include/arm_compute/runtime/NEON/functions/NEWinogradConvolutionLayer.h
|
||||
include/arm_compute/runtime/OMP/
|
||||
include/arm_compute/runtime/OMP/OMPScheduler.h
|
||||
include/arm_compute/runtime/OffsetLifetimeManager.h
|
||||
include/arm_compute/runtime/OffsetMemoryPool.h
|
||||
include/arm_compute/runtime/OperatorList.h
|
||||
include/arm_compute/runtime/OperatorTensor.h
|
||||
include/arm_compute/runtime/PoolManager.h
|
||||
include/arm_compute/runtime/RuntimeContext.h
|
||||
include/arm_compute/runtime/Scheduler.h
|
||||
include/arm_compute/runtime/SchedulerFactory.h
|
||||
include/arm_compute/runtime/SingleThreadScheduler.h
|
||||
include/arm_compute/runtime/SubTensor.h
|
||||
include/arm_compute/runtime/Tensor.h
|
||||
include/arm_compute/runtime/TensorAllocator.h
|
||||
include/arm_compute/runtime/Types.h
|
||||
include/arm_compute/runtime/common/
|
||||
include/arm_compute/runtime/common/LSTMParams.h
|
||||
include/arm_compute/runtime/experimental/
|
||||
include/arm_compute/runtime/experimental/Types.h
|
||||
include/half/
|
||||
include/half/half.hpp
|
||||
include/libnpy/
|
||||
include/libnpy/npy.hpp
|
||||
include/stb/
|
||||
include/stb/stb_image.h
|
||||
include/support/
|
||||
include/support/AclRequires.h
|
||||
include/support/BUILD.bazel
|
||||
include/support/Bfloat16.h
|
||||
include/support/CRTP.h
|
||||
include/support/Cast.h
|
||||
include/support/DeepCopy.h
|
||||
include/support/Half.h
|
||||
include/support/ICloneable.h
|
||||
include/support/Iterable.h
|
||||
include/support/Mutex.h
|
||||
include/support/Random.h
|
||||
include/support/Rounding.h
|
||||
include/support/SaturateCast.h
|
||||
include/support/Semaphore.h
|
||||
include/support/StringSupport.h
|
||||
include/support/ToolchainSupport.h
|
||||
include/support/Traits.h
|
||||
include/utils/
|
||||
include/utils/BUILD.bazel
|
||||
include/utils/CommonGraphOptions.cpp
|
||||
include/utils/CommonGraphOptions.h
|
||||
include/utils/GraphUtils.cpp
|
||||
include/utils/GraphUtils.h
|
||||
include/utils/ImageLoader.h
|
||||
include/utils/TypePrinter.h
|
||||
include/utils/Utils.cpp
|
||||
include/utils/Utils.h
|
||||
include/utils/command_line/
|
||||
include/utils/command_line/CommandLineOptions.h
|
||||
include/utils/command_line/CommandLineParser.h
|
||||
include/utils/command_line/EnumListOption.h
|
||||
include/utils/command_line/EnumOption.h
|
||||
include/utils/command_line/ListOption.h
|
||||
include/utils/command_line/Option.h
|
||||
include/utils/command_line/SimpleOption.h
|
||||
include/utils/command_line/ToggleOption.h
|
||||
@static-lib lib/libarm_compute.a
|
||||
@lib lib/libarm_compute.so.${LIBarm_compute_VERSION}
|
||||
@static-lib lib/libarm_compute_core.a
|
||||
@lib lib/libarm_compute_core.so.${LIBarm_compute_core_VERSION}
|
||||
@static-lib lib/libarm_compute_graph.a
|
||||
@lib lib/libarm_compute_graph.so.${LIBarm_compute_graph_VERSION}
|
||||
share/examples/arm-compute-library/
|
||||
share/examples/arm-compute-library/cl_cache.cpp
|
||||
share/examples/arm-compute-library/cl_sgemm.cpp
|
||||
share/examples/arm-compute-library/gemm_tuner/
|
||||
share/examples/arm-compute-library/gemm_tuner/CommonGemmExampleOptions.cpp
|
||||
share/examples/arm-compute-library/gemm_tuner/CommonGemmExampleOptions.h
|
||||
share/examples/arm-compute-library/gemm_tuner/GemmTuner.py
|
||||
share/examples/arm-compute-library/gemm_tuner/GemmTunerHelpers.h
|
||||
share/examples/arm-compute-library/gemm_tuner/README.md
|
||||
share/examples/arm-compute-library/gemm_tuner/cl_gemm_benchmark.sh
|
||||
share/examples/arm-compute-library/gemm_tuner/cl_gemm_native.cpp
|
||||
share/examples/arm-compute-library/gemm_tuner/cl_gemm_reshaped.cpp
|
||||
share/examples/arm-compute-library/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp
|
||||
share/examples/arm-compute-library/gemm_tuner/cl_gemmlowp_reshaped.cpp
|
||||
share/examples/arm-compute-library/gemm_tuner/cl_gemmlowp_reshaped_rhs_only_fused_output_stage_fixedpoint.cpp
|
||||
share/examples/arm-compute-library/graph_alexnet.cpp
|
||||
share/examples/arm-compute-library/graph_deepspeech_v0_4_1.cpp
|
||||
share/examples/arm-compute-library/graph_edsr.cpp
|
||||
share/examples/arm-compute-library/graph_edsr.h
|
||||
share/examples/arm-compute-library/graph_googlenet.cpp
|
||||
share/examples/arm-compute-library/graph_inception_resnet_v1.cpp
|
||||
share/examples/arm-compute-library/graph_inception_resnet_v2.cpp
|
||||
share/examples/arm-compute-library/graph_inception_v3.cpp
|
||||
share/examples/arm-compute-library/graph_inception_v4.cpp
|
||||
share/examples/arm-compute-library/graph_lenet.cpp
|
||||
share/examples/arm-compute-library/graph_mobilenet.cpp
|
||||
share/examples/arm-compute-library/graph_mobilenet_v2.cpp
|
||||
share/examples/arm-compute-library/graph_resnet12.cpp
|
||||
share/examples/arm-compute-library/graph_resnet50.cpp
|
||||
share/examples/arm-compute-library/graph_resnet_v2_50.cpp
|
||||
share/examples/arm-compute-library/graph_resnext50.cpp
|
||||
share/examples/arm-compute-library/graph_shufflenet.cpp
|
||||
share/examples/arm-compute-library/graph_squeezenet.cpp
|
||||
share/examples/arm-compute-library/graph_squeezenet_v1_1.cpp
|
||||
share/examples/arm-compute-library/graph_srcnn955.cpp
|
||||
share/examples/arm-compute-library/graph_ssd_mobilenet.cpp
|
||||
share/examples/arm-compute-library/graph_vgg16.cpp
|
||||
share/examples/arm-compute-library/graph_vgg19.cpp
|
||||
share/examples/arm-compute-library/graph_vgg_vdsr.cpp
|
||||
share/examples/arm-compute-library/graph_yolov3.cpp
|
||||
share/examples/arm-compute-library/neon_cnn.cpp
|
||||
share/examples/arm-compute-library/neon_copy_objects.cpp
|
||||
share/examples/arm-compute-library/neon_gemm_qasymm8.cpp
|
||||
share/examples/arm-compute-library/neon_permute.cpp
|
||||
share/examples/arm-compute-library/neon_scale.cpp
|
||||
share/examples/arm-compute-library/neon_sgemm.cpp
|
Loading…
Add table
Add a link
Reference in a new issue