Conversation
…xruntime-github-vs2022-latest
tianleiwu
commented
Oct 9, 2025
tools/ci_build/github/azure-pipelines/nuget/templates/test_linux.yml
Outdated
Show resolved
Hide resolved
snnn
approved these changes
Oct 13, 2025
fs-eire
pushed a commit
that referenced
this pull request
Oct 24, 2025
This upgrades CUDA 12.2 + cuDNN 9.5 to CUDA 12.8 + cuDNN 9.8 in CI pipelines, so that we can build 120-real to support Blackwell GPU. To speed up build, we also disable relocatable-device-code. MSVC is updated to latest for some windows build pipelines. #### Known issues Some onnx models (yolo v3, yolo v4, mobilenet v1) failed to run due to cudnn frontend failed to find engine plan. We will try upgrade cudnn frontend later. Related failed tests are disabled for now. --------- Co-authored-by: Changming Sun <chasun@microsoft.com>
naomiOvad
pushed a commit
to naomiOvad/onnxruntime
that referenced
this pull request
Nov 2, 2025
…t#26267) This upgrades CUDA 12.2 + cuDNN 9.5 to CUDA 12.8 + cuDNN 9.8 in CI pipelines, so that we can build 120-real to support Blackwell GPU. To speed up build, we also disable relocatable-device-code. MSVC is updated to latest for some windows build pipelines. #### Known issues Some onnx models (yolo v3, yolo v4, mobilenet v1) failed to run due to cudnn frontend failed to find engine plan. We will try upgrade cudnn frontend later. Related failed tests are disabled for now. --------- Co-authored-by: Changming Sun <chasun@microsoft.com>
adrastogi
added a commit
that referenced
this pull request
Mar 30, 2026
1. Linux CPU Minimal Build: Upgrade setup-build-tools from v0.0.9 to v0.0.12 (SHA 8bad63a3) with ccache support. The v0.0.12 build actions (build-and-prep-ort-files, build-minimal-ort-and-run-tests, run-build-script-in-docker) all hardcode ccache invocations internally, so ccache MUST be installed by setup-build-tools. Added actions/cache steps for ccache and vcpkg directories across all jobs. 2. Web CI Pipeline (WASM): Same setup-build-tools upgrade plus added --use_cache to common_build_args. Without ccache, WASM builds compile from scratch each time, causing 30+ min timeouts. 3. CUDA Builds: Cherry-pick test/build fixes from main commit 311b4a6 (PR #26267) needed for CUDA 12.8 compatibility: - Disable YOLO v3/v4 and MobilenetV1 model tests (cuDNN frontend cannot find engine plan with cuDNN 9.8) - Switch from --relocatable-device-code=true to --static-global-template-stub=false (faster builds) - Fix typeid(T).name() build error in gather_block_quantized test Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This upgrades CUDA 12.2 + cuDNN 9.5 to CUDA 12.8 + cuDNN 9.8 in CI pipelines, so that we can build 120-real to support Blackwell GPU.
To speed up build, we also disable relocatable-device-code.
MSVC is updated to latest for some windows build pipelines.
Known issues
Some onnx models (yolo v3, yolo v4, mobilenet v1) failed to run due to cudnn frontend failed to find engine plan. We will try upgrade cudnn frontend later. Related failed tests are disabled for now.