mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
### Description <!-- Describe your changes. --> ### 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. -->
13 lines
254 B
Bash
Executable file
13 lines
254 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export build_dir=$1
|
|
|
|
# it's for manylinux image
|
|
export PATH=/opt/python/cp310-cp310/bin:$PATH
|
|
|
|
echo Run symbolic shape infer test
|
|
pushd $build_dir/Release/
|
|
python3 /build/Release/onnxruntime_test_python_symbolic_shape_infer.py
|
|
popd
|