| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- #!/bin/bash
- set -e
- pushd $(cd $(dirname ${0})/..; pwd) > /dev/null
- case "${OSTYPE}" in
- msys*) python="winpty python";;
- *) python="python";;
- esac
- venv() {
- env_dir=./third_party/env/onnx
- [ -d "${env_dir}" ] || ${python} -m venv ${env_dir}
- case "${OSTYPE}" in
- msys*) source ${env_dir}/Scripts/activate;;
- *) source ${env_dir}/bin/activate;;
- esac
- ${python} -m pip install --quiet --upgrade pip setuptools wheel
- }
- clean() {
- echo "onnx clean"
- rm -rf "./third_party/env/onnx"
- rm -rf "./third_party/source/onnx"
- rm -rf "./third_party/source/onnxruntime"
- }
- sync() {
- echo "onnx sync"
- [ -d "./third_party/source/onnx" ] || git clone --quiet --recursive https://github.com/onnx/onnx.git "./third_party/source/onnx"
- pushd "./third_party/source/onnx" > /dev/null
- git pull --quiet --prune
- git submodule sync --quiet
- git submodule update --quiet --init --recursive
- popd > /dev/null
- mkdir -p "./third_party/source/onnxruntime/core/flatbuffers/schema"
- curl --silent --location --output "./third_party/source/onnxruntime/core/flatbuffers/schema/ort.fbs" "https://github.com/microsoft/onnxruntime/blob/main/onnxruntime/core/flatbuffers/schema/ort.fbs?raw=true"
- }
- install() {
- echo "onnx install"
- case "${OSTYPE}" in
- linux*)
- [ -x "$(command -v cmake)" ] || sudo apt install -y cmake
- protoc_version=3.16.0
- protoc_dir="$(pwd)/third_party/bin/protobuf/v${protoc_version}"
- if [ ! -f "${protoc_dir}/bin/protoc" ]; then
- rm -rf ${protoc_dir}
- git -c advice.detachedHead=false clone --quiet --recursive --depth=1 --branch v${protoc_version} https://github.com/protocolbuffers/protobuf.git ${protoc_dir}/src
- pushd "${protoc_dir}/src/cmake" > /dev/null
- cmake ../cmake -DCMAKE_CXX_FLAGS="-w" -Dprotobuf_BUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX="..\.." -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_POSITION_INDEPENDENT_CODE=ON -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release > /dev/null
- make -j$(nproc) > /dev/null
- make install > /dev/null
- popd > /dev/null
- fi
- protobuf="protobuf==${protoc_version}"
- export PATH="${protoc_dir}\bin":${PATH}
- ;;
- darwin*)
- [ -x "$(command -v cmake)" ] || brew install cmake > /dev/null
- [ -x "$(command -v protoc)" ] || brew install protobuf > /dev/null
- protobuf="protobuf==3.20.1"
- ;;
- msys*)
- protoc_version=3.16.0
- protoc_dir="$(pwd)/third_party/bin/protobuf/v${protoc_version}"
- programfiles_x86_dir=$(env | grep "^ProgramFiles(x86)=" | cut -d '=' -f 2)
- cmake_dir="${programfiles_x86_dir}\Microsoft Visual Studio\2017\BuildTools\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin"
- msbuild_dir="${programfiles_x86_dir}\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin"
- if [ ! -f "${protoc_dir}/bin/protoc.exe" ]; then
- rm -rf ${protoc_dir}
- git clone --quiet https://github.com/protocolbuffers/protobuf.git ${protoc_dir}/src
- git -C "${protoc_dir}/src" checkout v${protoc_version}
- pushd "${protoc_dir}/src/cmake" > /dev/null
- "${cmake_dir}\cmake.exe" -G "Visual Studio 15 2017 Win64" -Dprotobuf_MSVC_STATIC_RUNTIME=OFF -Dprotobuf_BUILD_TESTS=OFF -Dprotobuf_BUILD_EXAMPLES=OFF -DCMAKE_INSTALL_PREFIX="..\.." > /dev/null
- "${msbuild_dir}\MSBuild.exe" protobuf.sln //m //p:Configuration=Release > /dev/null
- "${msbuild_dir}\MSBuild.exe" INSTALL.vcxproj //p:Configuration=Release > /dev/null
- popd > /dev/null
- fi
- export PATH="${protoc_dir}\bin":"$(cygpath -u "${cmake_dir}")":${PATH}
- export USE_MSVC_STATIC_RUNTIME=0
- protobuf="protobuf==3.9.2"
- ;;
- esac
- venv
- ${python} -m pip install --quiet --upgrade ${protobuf}
- ${python} -m pip install --quiet "./third_party/source/onnx"
- deactivate
- }
- schema() {
- echo "onnx schema"
- [[ $(grep -U $'\x0D' ./source/onnx-proto.js) ]] && crlf=1
- node ./tools/protoc.js --text --root onnx --out ./source/onnx-proto.js --path ./third_party/source/onnx onnx/onnx-ml.proto onnx/onnx-operators-ml.proto
- if [[ -n ${crlf} ]]; then
- unix2dos --quiet --newfile ./source/onnx-proto.js ./source/onnx-proto.js
- fi
- [[ $(grep -U $'\x0D' ./source/onnx-schema.js) ]] && crlf=1
- node ./tools/flatc.js --root ort --out ./source/onnx-schema.js ./third_party/source/onnxruntime/core/flatbuffers/schema/ort.fbs
- if [[ -n ${crlf} ]]; then
- unix2dos --quiet --newfile ./source/onnx-schema.js ./source/onnx-schema.js
- fi
- }
- metadata() {
- echo "onnx metadata"
- [[ $(grep -U $'\x0D' ./source/onnx-metadata.json) ]] && crlf=1
- venv
- export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
- ${python} ./tools/onnx_script.py metadata
- deactivate
- if [[ -n ${crlf} ]]; then
- unix2dos --quiet --newfile ./source/onnx-metadata.json ./source/onnx-metadata.json
- fi
- }
- infer() {
- echo "onnx infer"
- venv
- export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
- ${python} ./tools/onnx_script.py infer ${1}
- deactivate
- }
- optimize() {
- echo "onnx optimize"
- venv
- export PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
- ${python} ./tools/onnx_script.py optimize ${1}
- deactivate
- }
- while [ "$#" != 0 ]; do
- command="$1" && shift
- case "${command}" in
- "clean") clean;;
- "sync") sync;;
- "install") install;;
- "schema") schema;;
- "metadata") metadata;;
- "infer") infer ${1} && shift;;
- "optimize") optimize ${1} && shift;;
- esac
- done
|