We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d992c5b commit b46f0aaCopy full SHA for b46f0aa
tools/gen_ort_dockerfile.py
@@ -205,8 +205,11 @@ def dockerfile_for_linux(output_file):
205
ARG ONNXRUNTIME_REPO
206
ARG ONNXRUNTIME_BUILD_CONFIG
207
208
+# [FIXME: DLIS-6856] WAR to cherry pick fix to build with CUDA 12.5, should be
209
+# removed once we advance to an ORT release that contains the fix.
210
RUN git clone -b rel-${ONNXRUNTIME_VERSION} --recursive ${ONNXRUNTIME_REPO} onnxruntime && \
- (cd onnxruntime && git submodule update --init --recursive)
211
+ (cd onnxruntime && git submodule update --init --recursive && \
212
+ git cherry-pick -n 362a62390545234d28661307c7a203f2546280ae)
213
"""
214
215
if FLAGS.onnx_tensorrt_tag != "":
0 commit comments