Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / backend / CMakeLists.txt
1 # Backend common libs
2 set(LIB_ONERT_BACKEND_ACL_COMMON onert_backend_acl_common)
3 set(LIB_ONERT_BACKEND_CL_COMMON onert_backend_cl_common)
4 add_subdirectory(cl_common)
5 add_subdirectory(acl_common)
6
7 # Backends
8 set(LIB_ONERT_BACKEND_CPU onert_backend_cpu)
9 add_subdirectory(cpu)
10 add_subdirectory(acl_cl)
11 add_subdirectory(acl_neon)
12 add_subdirectory(ruy)
13 add_subdirectory(gpu_cl)
14 add_subdirectory(xnnpack)
15 add_subdirectory(trix)
16
17 # Backend to train
18 if(ENABLE_ONERT_TRAIN)
19   add_subdirectory(train)
20 endif(ENABLE_ONERT_TRAIN)
21