upgrade_ascend_0710_mindspore

This commit is contained in:
dingpeifei 2021-07-12 15:48:01 +08:00 committed by shenwei41
parent ec052373d1
commit 552ba3f6b1
3 changed files with 4 additions and 5 deletions

View File

@ -64,7 +64,6 @@ struct BoxesConfig {
std::vector<float> prior_scaling;
};
//update run r1.3
/// \brief resizing image by bilinear algorithm, the data type of currently only supports is uint8,
/// the channel of currently supports is 3 and 1.
/// \param[in] src Input image data.

View File

@ -54,11 +54,11 @@ function Run_Hi3516() {
tar -zxf mindspore-lite-${version}-linux-aarch32.tar.gz || exit 1
cd ${arm32_path}/mindspore-lite-${version}-linux-aarch32 || return 1
chmod +x ./tools/benchmark/benchmark
chmod +x ./providers/Hi3516D/benchmark
# copy related files to benchmark_test
cp -a ./providers/Hi3516D/libmslite_nnie.so ${benchmark_test_path}/libmslite_nnie.so || exit 1
cp -a ./providers/Hi3516D/libnnie_proposal.so ${benchmark_test_path}/libnnie_proposal.so || exit 1
cp -a ./tools/benchmark/benchmark ${benchmark_test_path}/benchmark || exit 1
cp -a ./providers/Hi3516D/libmslite_proposal.so ${benchmark_test_path}/libmslite_proposal.so || exit 1
cp -a ./providers/Hi3516D/benchmark ${benchmark_test_path}/benchmark || exit 1
cp -a ./runtime/lib/libmindspore-lite.so ${benchmark_test_path}/libmindspore-lite.so || exit 1
# cp files to nfs shared folder

View File

@ -43,6 +43,6 @@ if(MSLITE_COMPILE_NNIE AND TARGET_HIMIX200 AND PLATFORM_ARM)
add_dependencies(benchmark fbs_src)
target_link_libraries(benchmark mindspore-lite mindspore::json pthread nnie_proposal
target_link_libraries(benchmark mindspore-lite mindspore::json pthread mslite_proposal
mslite_nnie dl nnie mpi VoiceEngine upvqe dnvqe securec)
endif()