Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix symbol json name
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudh2290 committed Jan 16, 2020
1 parent 8e7e085 commit 800847d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ integrationtest_ubuntu_gpu_capi_cpp_package() {
export LD_LIBRARY_PATH=/work/mxnet/lib:$LD_LIBRARY_PATH
python3 -c "import mxnet as mx; mx.test_utils.download_model(\"imagenet1k-resnet-18\"); mx.test_utils.download_model(\"imagenet1k-resnet-152\"); mx.test_utils.download_model(\"imagenet1k-resnet-50\");"
# Load symbol, convert symbol to leverage fusion with subgraphs, save the model
python3 -c "import mxnet as mx; x = mx.sym.load(\"imagenet1k-resnet-152-symbol.json\"); x.get_backend_symbol(\"MKLDNN\"); x.save(\"imagenet1k-resnet-152-subgraph\");"
python3 -c "import mxnet as mx; x = mx.sym.load(\"imagenet1k-resnet-152-symbol.json\"); x.get_backend_symbol(\"MKLDNN\"); x.save(\"imagenet1k-resnet-152-subgraph-symbol.json\");"
# Copy params file with a different name, used in subgraph symbol testing
cp imagenet1k-resnet-152-0000.params imagenet1k-resnet-152-subgraph-0000.params
build/tests/cpp/mxnet_unit_tests --gtest_filter="ThreadSafety.*"
Expand Down

0 comments on commit 800847d

Please sign in to comment.