Skip to content

Commit

Permalink
Enable support for TensoRT 10.5 (#274)
Browse files Browse the repository at this point in the history
* Enable support for TensoRT 10.5

* Revert linux changes
  • Loading branch information
mc-nv authored Oct 14, 2024
1 parent 17f9596 commit 17d7cce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/gen_ort_dockerfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,9 @@ def dockerfile_for_windows(output_file):
ARG ONNXRUNTIME_VERSION
ARG ONNXRUNTIME_REPO
RUN git clone -b rel-%ONNXRUNTIME_VERSION% --recursive %ONNXRUNTIME_REPO% onnxruntime && \
(cd onnxruntime && git submodule update --init --recursive)
cd onnxruntime && git submodule update --init --recursive && \
git config --global user.email "[email protected]" && git config --global user.name "Your Name" && \
git cherry-pick 709368ea1443dc1ff68dece31d692ad065fb94d4
"""

if FLAGS.onnx_tensorrt_tag != "":
Expand Down

0 comments on commit 17d7cce

Please sign in to comment.