Skip to content

Commit

Permalink
updating onnxruntime to 1.19.2, updating onnx to 1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
styler00dollar committed Dec 31, 2024
1 parent 0f85bed commit 05a92fc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions backend/src/packages/chaiNNer_onnx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ def get_onnx_runtime():
return Dependency(
display_name="ONNX Runtime (GPU)",
pypi_name="onnxruntime-gpu",
version="1.17.1",
size_estimate=120 * MB,
version="1.19.2",
size_estimate=226 * MB,
import_name="onnxruntime",
extra_index_url="https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/onnxruntime-cuda-12/pypi/simple/",
)
else:
return Dependency(
display_name="ONNX Runtime",
pypi_name="onnxruntime",
version="1.17.1",
size_estimate=6 * MB,
version="1.19.2",
size_estimate=13 * MB,
)


Expand All @@ -46,21 +46,21 @@ def get_onnx_runtime():
Dependency(
display_name="ONNX",
pypi_name="onnx",
version="1.16.0",
size_estimate=12 * MB,
version="1.17.0",
size_estimate=16 * MB,
),
Dependency(
display_name="ONNX Optimizer",
pypi_name="onnxoptimizer",
version="0.3.13",
size_estimate=300 * KB,
size_estimate=700 * KB,
),
get_onnx_runtime(),
Dependency(
display_name="Protobuf",
pypi_name="protobuf",
version="4.24.2",
size_estimate=500 * KB,
version="5.29.2",
size_estimate=300 * KB,
),
],
icon="ONNX",
Expand Down

0 comments on commit 05a92fc

Please sign in to comment.