aboutsummaryrefslogtreecommitdiff
path: root/src/backends/gpuFsa/backend.mk
blob: 78ba7ba167e256536af0ed71ef0ecb6fd1224c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# Copyright © 2022-2023 Arm Ltd and Contributors. All rights reserved.
# SPDX-License-Identifier: MIT
#

# BACKEND_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

# The variable to enable/disable the GPU Dynamic Fusion backend
# (ARMNN_COMPUTE_GPUFSA_ENABLED is declared in android-nn-driver/Android.mk)
ifeq ($(ARMNN_COMPUTE_GPUFSA_ENABLED),1)

# ARMNN_COMPUTE_GPUFSA_ENABLED == 1
# Include the source files for the GPU Dynamic Fusion backend

BACKEND_SOURCES := \
        GpuFsaBackend.cpp \
        GpuFsaBackendContext.cpp \
        GpuFsaContextControl.cpp \
        GpuFsaLayerSupport.cpp \
        GpuFsaRegistryInitializer.cpp \
        GpuFsaTensorHandleFactory.cpp \
        GpuFsaWorkloadFactory.cpp
else

# ARMNN_COMPUTE_GPUFSA_ENABLED == 0
# No source file will be compiled for the GPU Dynamic Fusion backend

BACKEND_SOURCES :=

endif

# BACKEND_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

# The variable to enable/disable the GPU Dynamic Fusion backend
# (ARMNN_COMPUTE_GPUFSA_ENABLED is declared in android-nn-driver/Android.mk)
ifeq ($(ARMNN_COMPUTE_GPUFSA_ENABLED),1)

# ARMNN_COMPUTE_GPUFSA_ENABLED == 1
# Include the source files for the GPU Dynamic Fusion backend tests

BACKEND_TEST_SOURCES := \
		test/GpuFsaEndToEndTests.cpp \
        test/GpuFsaLayerSupportTests.cpp \
        test/GpuFsaLayerTests.cpp \
        test/GpuFsaOptimizedNetworkTests.cpp
else

# ARMNN_COMPUTE_GPUFSA_ENABLED == 0
# No source file will be compiled for the GPU Dynamic Fusion backend tests

BACKEND_TEST_SOURCES :=

endif