mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-22 22:01:08 +00:00
* Adding async fetching for webgl backend (#8951)
* Adding async fetching for webgl backend
* fix PR comments and CI failure.
* fixing a bug
* adding a flag
* Enable linking in exception throwing support library when build onnxruntime wasm. (#8973)
* Enable linking in exception throwing support library when build onnxruntime webassembly containing onnxruntime-extensions.
* Add flag in build.py to enable linking exceptions throwing library.
* Update onnxruntime-extensions document and bind custom_ops build flag with use_extensions.
* Update doc.
* Update cgmanifest.json.
Co-authored-by: Zuwei Zhao <zuzhao@microsoft.com>
* Remove document text from error message in a couple of ops (#9003)
* do not add pkg wheel entry to the index html file if it already exists (#9004)
* do not add pkg wheel entry to the index html file if it already exists
* [js/web] fix ort web e2e test (#9025)
* Fix cmake POWER10 detection
Recent commit
|
||
|---|---|---|
| .. | ||
| requirements-tools | ||
| ambv-pubkey.txt | ||
| build-cmake.sh | ||
| build-cpython.sh | ||
| build-git.sh | ||
| build-openssl.sh | ||
| build-sqlite3.sh | ||
| build-swig.sh | ||
| build_utils.sh | ||
| cpython-pubkey-310-311.txt | ||
| cpython-pubkeys.txt | ||
| finalize.sh | ||
| fixup-mirrors.sh | ||
| install-autoconf.sh | ||
| install-automake.sh | ||
| install-build-packages.sh | ||
| install-entrypoint.sh | ||
| install-libtool.sh | ||
| install-libxcrypt.sh | ||
| install-patchelf.sh | ||
| install-protobuf.sh | ||
| install-pypy.sh | ||
| install-runtime-packages.sh | ||
| LICENSE | ||
| pypy.sha256 | ||
| python-tag-abi-tag.py | ||
| README.md | ||
| requirements-base-tools.txt | ||
| requirements-tools.txt | ||
| requirements.txt | ||
| requirements3.6.txt | ||
| requirements3.7.txt | ||
| requirements3.8.txt | ||
| requirements3.9.txt | ||
| requirements3.10.txt | ||
| update-system-packages.sh | ||
All the files in this folder were copied from https://github.com/pypa/manylinux (commit id 92f447b951e121d4df46fbbc68982a76a0e7dc1b) with two tiny changes:
diff -r /data/bt/os/manylinux/docker/build_scripts/install-entrypoint.sh ./install-entrypoint.sh
23a24,25
> yum install -y yum-plugin-versionlock
> yum versionlock cuda* libcudnn*
\ No newline at end of file
diff -r /data/bt/os/manylinux/docker/build_scripts/install-runtime-packages.sh ./install-runtime-packages.sh
87c87,95
< TOOLCHAIN_DEPS="devtoolset-10-binutils devtoolset-10-gcc devtoolset-10-gcc-c++ devtoolset-10-gcc-gfortran"
---
>
> #Added by @snnn
> if [ -d "/usr/local/cuda-10.2" ]; then
> TOOLCHAIN_DEPS="devtoolset-8-binutils devtoolset-8-gcc devtoolset-8-gcc-c++ devtoolset-8-gcc-gfortran"
> elif [ -d "/usr/local/cuda-11.1" ]; then
> TOOLCHAIN_DEPS="devtoolset-9-binutils devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-gcc-gfortran"
> else
> TOOLCHAIN_DEPS="devtoolset-10-binutils devtoolset-10-gcc devtoolset-10-gcc-c++ devtoolset-10-gcc-gfortran"
> fi
92c100,102
< yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
---
> if ! rpm -q --quiet epel-release ; then
> yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
> fi