onnxruntime/tools/scripts/symbolic_shape_infer_test.sh
Yi Zhang c0a4fe777f
Move Linux python test into docker (#17479)
### Description
supplement of #17417



### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
2023-09-13 15:21:28 +08:00

13 lines
252 B
Bash

#!/bin/bash
set -ex
export build_dir=$1
# it's for manylinux image
export PATH=/opt/python/cp38-cp38/bin:$PATH
echo Run symbolic shape infer test
pushd $build_dir/Release/
python3 /build/Release/onnxruntime_test_python_symbolic_shape_infer.py
popd