From: 이한종/동작제어Lab(SR)/Engineer/삼성전자 Date: Wed, 25 Jul 2018 09:36:24 +0000 (+0900) Subject: [neurun] Do not compile cpu backend from runtime (#2080) X-Git-Tag: 0.2~397 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=34ab09cb326228cd97f5a860e59f3877668b39a6;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Do not compile cpu backend from runtime (#2080) Do not compile cpu backend sources when building runtime. These sources was supposed to be excluded when cpu backend is built separately but it wasn't yet. Signed-off-by: Hanjoung Lee --- diff --git a/runtimes/neurun/CMakeLists.txt b/runtimes/neurun/CMakeLists.txt index 8fbdec4..2fb4a0c 100644 --- a/runtimes/neurun/CMakeLists.txt +++ b/runtimes/neurun/CMakeLists.txt @@ -11,10 +11,7 @@ file(GLOB SOURCES "src/*.cc") file(GLOB_RECURSE SOURCES_INTERNAL "src/internal/*.cc") file(GLOB_RECURSE SOURCES_KERNEL "src/kernel/*.cc") # TODO should be built as a separate lib -# TODO This must be built separately, just like "backend/cpu" -file(GLOB_RECURSE SOURCES_BACKEND_ACL "src/backend/acl_cl/*.cc") - -set(SOURCES ${SOURCES} ${SOURCES_INTERNAL} ${SOURCES_BACKEND_ACL} ${SOURCES_KERNEL}) +set(SOURCES ${SOURCES} ${SOURCES_INTERNAL} ${SOURCES_KERNEL}) # NOTE For now ARMCompute is necessary # TODO Remove required package below(should be optional)