mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-25 02:50:42 +00:00
14 lines
252 B
Bash
14 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
|