Skip to content

Commit

Permalink
use 1.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
xadupre committed Sep 16, 2024
1 parent f103998 commit ed0b9bd
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOGS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Change Logs
0.3.0
+++++

* :pr:`189`: use onnxruntime==1.19.0 as default, pybind11 2.13.5, MatX 0.8.0
* :pr:`189`: use onnxruntime==1.19.2 as default, pybind11 2.13.5, MatX 0.8.0
* :pr:`187`: Fix compilation with GCC>=13 #187
* :pr:`185`: adds custom operator MulMulSigmoid on CUDA
* :pr:`184`: use onnxruntime==1.18.0 as default
Expand Down
2 changes: 1 addition & 1 deletion _doc/tutorial/old_version.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ It calls function :func:`bench_virtual <onnx_extended.tools.run_onnx.bench_virtu
runtimes = ["onnxruntime"]
modules = [
{"onnx-extended": "0.3.0", "onnx": "1.15.0", "onnxruntime": "1.19.0"},
{"onnx-extended": "0.3.0", "onnx": "1.15.0", "onnxruntime": "1.19.2"},
{"onnx-extended": "0.3.0", "onnx": "1.15.0", "onnxruntime": "1.18.0"},
{"onnx-extended": "0.2.3", "onnx": "1.15.0", "onnxruntime": "1.17.3"},
{"onnx-extended": "0.2.3", "onnx": "1.15.0", "onnxruntime": "1.16.3"},
Expand Down
2 changes: 1 addition & 1 deletion _unittests/ut_ortcy/test_ortcy.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
path = onnx_extended.ortcy.wrap.ortinf.__file__
except ImportError as ee:
path = str(ee)
msg = "libonnxruntime.so.1.19.0: cannot open shared object file"
msg = "libonnxruntime.so.1.19.2: cannot open shared object file"
if msg in str(e):
from onnx_extended.ortcy.wrap import __file__ as loc

Expand Down
2 changes: 1 addition & 1 deletion _unittests/ut_xrun_doc/test_documentation_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
try:
from onnx_extended.ortcy.wrap.ortinf import OrtSession
except ImportError as e:
msg = "libonnxruntime.so.1.19.0: cannot open shared object file"
msg = "libonnxruntime.so.1.19.2: cannot open shared object file"
if msg in str(e):
from onnx_extended.ortcy.wrap import __file__ as loc

Expand Down
2 changes: 1 addition & 1 deletion onnx_extended/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def local_print(msg):

this = os.path.dirname(cyfile)
files = os.listdir(this)
if "libonnxruntime.so.1.19.0" in files:
if "libonnxruntime.so.1.19.2" in files:
if verbose:
local_print(
"[check_installation_ortcy] weird issue as the "
Expand Down
2 changes: 1 addition & 1 deletion onnx_extended/tools/run_onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def bench_virtual(
if modules is None:
# ext = "https://github.com/sdpython/onnx-extended.git"
modules = [
{"onnxruntime": "1.19.0", "onnx": None, "onnx-extended": "0.3.0"},
{"onnxruntime": "1.19.2", "onnx": None, "onnx-extended": "0.3.0"},
{"onnxruntime": "1.18.0", "onnx": None, "onnx-extended": "0.3.0"},
{"onnxruntime": "1.17.1", "onnx": None, "onnx-extended": "0.2.3"},
{
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ matplotlib
ml-dtypes
onnx-array-api
onnxmltools
onnxruntime>=1.19.0
onnxruntime>=1.19.2
openpyxl
opt_einsum
packaging
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ def get_ext_modules():
# beginning of setup
######################

DEFAULT_ORT_VERSION = "1.19.0"
DEFAULT_ORT_VERSION = "1.19.2"
here = os.path.dirname(__file__)
if here == "":
here = "."
Expand Down

0 comments on commit ed0b9bd

Please sign in to comment.