From 53d84d29fca4e1345b74d2f9f332f560e3f0c83f Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 19 Apr 2021 15:04:34 +0800 Subject: [PATCH] Update build.sh. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 5f8512a6..05b24819 100644 --- a/build.sh +++ b/build.sh @@ -173,7 +173,7 @@ build_graphengine() TARGET="ge_runner fwk_atc.bin ${TARGET}" elif [ "x${PLATFORM}" = "xinference" ] then - TARGET="ge_compiler atc_atc.bin ${TARGET}" + TARGET="ge_compiler atc_atc.bin ge_executor ${TARGET}" elif [ "X$ENABLE_GE_UT" = "Xon" ] then TARGET="ut_libgraph ut_libge_multiparts_utest ut_libge_others_utest ut_libge_kernel_utest ut_libge_distinct_load_utest" @@ -183,7 +183,7 @@ build_graphengine() elif [ "x${PLATFORM}" = "xall" ] then # build all the target - TARGET="ge_runner ge_compiler fwk_atc.bin atc_atc.bin ${TARGET}" + TARGET="ge_runner ge_compiler fwk_atc.bin atc_atc.bin ge_executor ${TARGET}" fi make ${VERBOSE} ${TARGET} -j${THREAD_NUM} && make install