flatten 20260225

This commit is contained in:
Timothy Prepscius
2026-02-25 13:00:25 -05:00
commit b308a4c280
114 changed files with 14759 additions and 0 deletions

30
resources/packages/onnx/prepare Executable file
View File

@@ -0,0 +1,30 @@
set -x
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
mkdir -p sdk/include
LIB=onnx
mkdir $LIB
pushd $LIB
wget https://github.com/microsoft/onnxruntime/releases/download/v1.12.1/onnxruntime-linux-x64-gpu-1.12.1.tgz
tar xf onnxruntime-linux-x64-gpu-1.12.1.tgz
ln -fs onnx*/ onnx
popd
pushd sdk/include
rm onnx
ln -fs ../../$LIB/onnx/include onnx
popd
pushd sdk/lib
for d in */
do
pushd $d
ln -fs ../../../$LIB/onnx/lib/* .
popd
done
popd