mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
Remove unnecessary --nnapi_partitioning_stop_ops option from convert_onnx_models_to_ort.py, fix old instructions.
12 lines
293 B
Bash
Executable file
12 lines
293 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Get directory this script is in
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd ${DIR}
|
|
|
|
python3 ./single_add_gen.py
|
|
|
|
ORT_CONVERT_ONNX_MODELS_TO_ORT_OPTIMIZATION_LEVEL=basic python3 -m onnxruntime.tools.convert_onnx_models_to_ort --optimization_style=Fixed .
|