Commit 06898e7d authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Initial commit

parents
all:
dd if=/dev/zero of=swap bs=1048576 count=1024
chmod 600 swap
mkswap swap
swapon swap
tar xf onnxruntime-1.16.3.tar.gz
cd onnxruntime-1.16.3 && mkdir build
cd onnxruntime-1.16.3/build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -Donnxruntime_BUILD_SHARED_LIB=ON -DBUILD_TESTING=OFF -Donnxruntime_BUILD_UNIT_TESTS=OFF ../cmake
$(MAKE) -C onnxruntime-1.16.3/build
$(MAKE) -C onnxruntime-1.16.3/build install
rm -rf onnxruntime-1.16.3
swapoff swap
rm -rf swap
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment