From: 오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 Date: Tue, 6 Aug 2019 01:53:02 +0000 (+0900) Subject: Update replaced scripts path (#6255) X-Git-Tag: submit/tizen/20190809.050447~131 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a00acba4c48a50c9e43f199939befe66f4dc4d2e;p=platform%2Fcore%2Fml%2Fnnfw.git Update replaced scripts path (#6255) Update replaced scripts path reference in script or document: scripts/standalone -> infra/scripts Signed-off-by: Hyeongseok Oh --- diff --git a/docs/nnfw/howto/HowToUseDockerImage.md b/docs/nnfw/howto/HowToUseDockerImage.md index 04bfdae..b840483 100644 --- a/docs/nnfw/howto/HowToUseDockerImage.md +++ b/docs/nnfw/howto/HowToUseDockerImage.md @@ -136,7 +136,7 @@ $ docker run --rm -v $(pwd):/opt/nnfw -w /opt/nnfw nnfw_docker make install or use `docker_build_test_x64.sh` for convenience as below. ``` $ cd nnfw -$ ./scripts/standalone/docker_build_test_x64.sh +$ ./infra/scripts/docker_build_test_x64.sh ``` You can find built artifacts at `nnfw/Product/x86_64-linux.debug`. @@ -146,13 +146,13 @@ You should prepare RootFS, following [Cross Building for ARM](https://github.sec ``` $ cd nnfw $ ROOTFS_DIR=$(pwd)/tools/cross/rootfs/arm \ -./scripts/standalone/docker_build_cross_arm.sh +./infra/scripts/docker_build_cross_arm.sh ``` You can find built artifacts at `nnfw/Product/armv7l-linux.debug/`. 3. Build `nnfw` for Tizen ARM package on x86_64 host ``` $ cd nnfw -$ ./scripts/standalone/docker_build_tizen_gbs.sh +$ ./infra/scripts/docker_build_tizen_gbs.sh ``` You can find built artifacts at `Product/out/rpm`. diff --git a/infra/scripts/test_coverage.sh b/infra/scripts/test_coverage.sh index be509d9..a78367a 100755 --- a/infra/scripts/test_coverage.sh +++ b/infra/scripts/test_coverage.sh @@ -23,16 +23,16 @@ export GCOV_PREFIX_STRIP=`cat $ROOT_PATH/tests/scripts/build_path_depth.txt` pushd $ROOT_PATH > /dev/null -./scripts/standalone/test_arm_neurun_acl_cl.sh -./scripts/standalone/test_arm_neurun_acl_neon.sh -./scripts/standalone/test_arm_neurun_cpu.sh -./scripts/standalone/test_arm_neurun_mixed.sh +./infra/scripts/test_arm_neurun_acl_cl.sh +./infra/scripts/test_arm_neurun_acl_neon.sh +./infra/scripts/test_arm_neurun_cpu.sh +./infra/scripts/test_arm_neurun_mixed.sh # Enable all logs (acl_cl kernel) -NEURUN_LOG_ENABLE=1 GRAPH_DOT_DUMP=1 ./scripts/standalone/test_arm_neurun_acl_cl.sh +NEURUN_LOG_ENABLE=1 GRAPH_DOT_DUMP=1 ./infra/scripts/test_arm_neurun_acl_cl.sh # Interpreter -./scripts/standalone/test_neurun_interp.sh +./infra/scripts/test_neurun_interp.sh mkdir -p gcov find Product -type f \( -iname *.gcda -or -iname *.gcno \) -exec mv {} ./gcov/. \;