aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/common.mk
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2020-03-19 17:03:14 +0000
committerJim Flynn <jim.flynn@arm.com>2020-03-19 17:03:14 +0000
commit0e2bab81442ee6cc2b94e4f7881ed0c5c6af65e7 (patch)
treeb0af08b5a0b74149fca422151127ac6310385399 /src/backends/backendsCommon/common.mk
parent8c3259fa007d43fcc5ea56fe6928526dbe79f3c0 (diff)
downloadarmnn-0e2bab81442ee6cc2b94e4f7881ed0c5c6af65e7.tar.gz
Creating gh-pages documentation for ArmNN
Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/backends/backendsCommon/common.mk')
-rw-r--r--src/backends/backendsCommon/common.mk85
1 files changed, 0 insertions, 85 deletions
diff --git a/src/backends/backendsCommon/common.mk b/src/backends/backendsCommon/common.mk
deleted file mode 100644
index 56a21b386c..0000000000
--- a/src/backends/backendsCommon/common.mk
+++ /dev/null
@@ -1,85 +0,0 @@
-#
-# Copyright © 2017 ARM Ltd. All rights reserved.
-# SPDX-License-Identifier: MIT
-#
-
-# COMMON_SOURCES contains the list of files to be included
-# in the Android build and it is picked up by the Android.mk
-# file in the root of ArmNN
-
-COMMON_SOURCES := \
- CpuTensorHandle.cpp \
- DynamicBackend.cpp \
- DynamicBackendUtils.cpp \
- IBackendInternal.cpp \
- ITensorHandleFactory.cpp \
- LayerSupportBase.cpp \
- MemCopyWorkload.cpp \
- MemImportWorkload.cpp \
- MemSyncWorkload.cpp \
- OptimizationViews.cpp \
- TensorHandleFactoryRegistry.cpp \
- WorkloadData.cpp \
- WorkloadFactory.cpp \
- WorkloadUtils.cpp
-
-# COMMON_TEST_SOURCES contains the list of files to be included
-# in the Android unit test build (armnn-tests) and it is picked
-# up by the Android.mk file in the root of ArmNN
-
-COMMON_TEST_SOURCES := \
- test/CommonTestUtils.cpp \
- test/InstanceNormalizationEndToEndTestImpl.cpp \
- test/JsonPrinterTestImpl.cpp \
- test/LogSoftmaxEndToEndTestImpl.cpp \
- test/QuantizedLstmEndToEndTestImpl.cpp \
- test/SpaceToDepthEndToEndTestImpl.cpp \
- test/TensorCopyUtils.cpp \
- test/layerTests/AbsTestImpl.cpp \
- test/layerTests/ActivationTestImpl.cpp \
- test/layerTests/AdditionTestImpl.cpp \
- test/layerTests/ArgMinMaxTestImpl.cpp \
- test/layerTests/BatchNormalizationTestImpl.cpp \
- test/layerTests/ComparisonTestImpl.cpp \
- test/layerTests/ConcatTestImpl.cpp \
- test/layerTests/ConstantTestImpl.cpp \
- test/layerTests/Conv2dTestImpl.cpp \
- test/layerTests/ConvertFp16ToFp32TestImpl.cpp \
- test/layerTests/ConvertFp32ToFp16TestImpl.cpp \
- test/layerTests/DebugTestImpl.cpp \
- test/layerTests/DepthToSpaceTestImpl.cpp \
- test/layerTests/DequantizeTestImpl.cpp \
- test/layerTests/DivisionTestImpl.cpp \
- test/layerTests/ElementwiseUnaryTestImpl.cpp \
- test/layerTests/FakeQuantizationTestImpl.cpp \
- test/layerTests/FloorTestImpl.cpp \
- test/layerTests/FullyConnectedTestImpl.cpp \
- test/layerTests/GatherTestImpl.cpp \
- test/layerTests/InstanceNormalizationTestImpl.cpp \
- test/layerTests/L2NormalizationTestImpl.cpp \
- test/layerTests/LogSoftmaxTestImpl.cpp \
- test/layerTests/LstmTestImpl.cpp \
- test/layerTests/MaximumTestImpl.cpp \
- test/layerTests/MinimumTestImpl.cpp \
- test/layerTests/MultiplicationTestImpl.cpp \
- test/layerTests/NormalizationTestImpl.cpp \
- test/layerTests/PadTestImpl.cpp \
- test/layerTests/Pooling2dTestImpl.cpp \
- test/layerTests/ReshapeTestImpl.cpp \
- test/layerTests/ResizeTestImpl.cpp \
- test/layerTests/RsqrtTestImpl.cpp \
- test/layerTests/SliceTestImpl.cpp \
- test/layerTests/QuantizeTestImpl.cpp \
- test/layerTests/SoftmaxTestImpl.cpp \
- test/layerTests/SpaceToBatchNdTestImpl.cpp \
- test/layerTests/SpaceToDepthTestImpl.cpp \
- test/layerTests/SplitterTestImpl.cpp \
- test/layerTests/StackTestImpl.cpp \
- test/layerTests/StridedSliceTestImpl.cpp \
- test/layerTests/SubtractionTestImpl.cpp \
- test/layerTests/TransposeConvolution2dTestImpl.cpp
-
-ifeq ($(ARMNN_REF_ENABLED),1)
-COMMON_TEST_SOURCES += \
- test/WorkloadDataValidation.cpp
-endif # ARMNN_REF_ENABLED == 1