Skip to content

Commit d5a9381

Browse files
mc-nvpvijayakrish
authored andcommitted
Enable support for TensoRT 10.5 (#274)
* Enable support for TensoRT 10.5 * Revert linux changes
1 parent 527e9c8 commit d5a9381

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/gen_ort_dockerfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,9 @@ def dockerfile_for_windows(output_file):
441441
ARG ONNXRUNTIME_VERSION
442442
ARG ONNXRUNTIME_REPO
443443
RUN git clone -b rel-%ONNXRUNTIME_VERSION% --recursive %ONNXRUNTIME_REPO% onnxruntime && \
444-
(cd onnxruntime && git submodule update --init --recursive)
444+
cd onnxruntime && git submodule update --init --recursive && \
445+
git config --global user.email "you@example.com" && git config --global user.name "Your Name" && \
446+
git cherry-pick 709368ea1443dc1ff68dece31d692ad065fb94d4
445447
"""
446448

447449
if FLAGS.onnx_tensorrt_tag != "":

0 commit comments

Comments
 (0)