Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ab4831d
Fix npm audit vulnerabilities in /js directory (#26632)
Copilot Nov 25, 2025
df8bf2d
[webgpu] Optimize InstanceNormalization by removing redundant transpo…
wenqinI Nov 25, 2025
5c28c7e
[webgpu] refactor a few "context" classes (#26602)
fs-eire Nov 26, 2025
454c61b
Bump actions/checkout from 5 to 6 (#26641)
dependabot[bot] Nov 26, 2025
b33c91a
add LogEvaluationStart for ReplayGraph (#26645)
xieofxie Nov 26, 2025
7845ea8
add LogCompileModel to mark the session usage (#26646)
xieofxie Nov 26, 2025
55bfa30
[webgpu] Fix bug introduced by RoE (#26661)
qjia7 Nov 26, 2025
f02a640
[QNN-EP] Enable verbose and artifacts saving in onnxruntime_provider_…
qti-hungjuiw Nov 26, 2025
4c43c66
[webgpu] Use multiplication instead of pow if exponent is 2 (#26667)
xenova Nov 27, 2025
71f4e67
Avoid creation of temporary protobuf object (#26681)
cbourjau Dec 1, 2025
eab7c9a
Use `std::string_view` directly as key to `absl::flat_hash_map::find`…
cbourjau Dec 1, 2025
0593840
[webgpu] Convert i32 to u32 in uniforms (#26676)
xiaofeihan1 Dec 1, 2025
5c245bc
[webgpu] Fix BatchNormalization ShapeInferenceError for 2D inputs (#2…
xenova Dec 1, 2025
a19954c
Clear cuda error on unsupported CudaMemPool test (#26629)
yuslepukhin Dec 1, 2025
55a38c5
[QNN-EP] Include detailed error message in the returned status (#26546)
chunghow-qti Dec 1, 2025
ee77417
add support for int32_t in webgpu / slice (#26693)
guschmue Dec 2, 2025
458e1bb
[webgpu] Remove `global_id` and `workgroup_id` in gemm_utils.cc (#26662)
Jiawei-Shao Dec 2, 2025
c156e93
[webgpu] Correct definition of large numbers, fixes softmax(max_negat…
xenova Dec 2, 2025
2b659e4
[TRT/TRT RTX EP] Fix bug for missing outputs in the returning Compute…
chilo-ms Dec 2, 2025
817a44f
[ROCM] Remove docker, contrib ops, ci scripts related to ROCM EP (#26…
tianleiwu Dec 2, 2025
538bf5f
Merge branch 'master' into sync_msft_03122025
Jaswanth51 Dec 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
android_nnapi_ep:
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use jdk 17
uses: actions/setup-java@v5
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
name: Android CI Pipeline
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use jdk 17
uses: actions/setup-java@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cffconvert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- name: Check out a copy of the repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check whether the citation metadata from CITATION.cff is valid
uses: citation-file-format/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: "Validation"
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: gradle/actions/wrapper-validation@v5
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.ref || github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: macos-14
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- uses: microsoft/onnxruntime-github-actions/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Optional Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: misspell # Check spellings as well
uses: reviewdog/action-misspell@v1
with:
Expand All @@ -42,7 +42,7 @@ jobs:
contents: read
security-events: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
name: Optional Lint C++
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Update PATH
run: |
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
name: Lint JavaScript
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 20
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_cuda_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
packages: read
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: microsoft/onnxruntime-github-actions/[email protected]
id: build_docker_image_step
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/linux_minimal_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- uses: actions/setup-node@v6
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- uses: actions/setup-node@v6
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- uses: actions/setup-node@v6
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- uses: actions/setup-node@v6
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- uses: actions/setup-node@v6
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down Expand Up @@ -505,7 +505,7 @@ jobs:
id-token: write # If using OIDC for ACR login
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false
- uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_tensorrt_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
packages: read
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

# --- Build the Docker image needed for testing ---
- name: Build Docker Image for Testing
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: microsoft/onnxruntime-github-actions/[email protected]
with:
vcpkg-version: '2025.06.13'
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: microsoft/onnxruntime-github-actions/[email protected]
with:
vcpkg-version: '2025.06.13'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-ci-build-and-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: microsoft/onnxruntime-github-actions/[email protected]
with:
vcpkg-version: '2025.06.13'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-c-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Generate C/C++ API docs
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install doxygen and dependencies
run: |
sudo apt update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-csharp-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
DOCFXVERSION: 2.62.2
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install DocFX
run: |
dotnet tool update -g docfx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-java-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Generate Java docs
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up JDK 11
uses: actions/setup-java@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-js-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Generate JS API docs
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-objectivec-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Generate Objective-C API docs
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: microsoft/onnxruntime-github-actions/[email protected]
with:
vcpkg-version: '2025.06.13'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-python-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Generate Python API docs
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install tools
run: |
sudo apt-get update
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/react_native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
aar_path: ${{ runner.temp }}/.artifacts
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
run: echo "ANDROID_AVD_HOME=${{ runner.temp }}/android-avd" >> $GITHUB_ENV

- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Use Python 3.12
uses: actions/setup-python@v6
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
timeout-minutes: 120
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Use Xcode 15.3.0
run: sudo xcode-select --switch /Applications/Xcode_15.3.0.app/Contents/Developer
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
timeout-minutes: 90
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Download iOS pod artifact
uses: actions/download-artifact@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable_linux_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python ${{ inputs.python_version }}
if: inputs.architecture != 'arm64'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
commit_sha: ${{ steps.extract_commit.outputs.commit_sha }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-web-ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_build_x64_asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Windows GPU CUDA CI Pipeline
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-vs2022-latest"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: 'none'
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
timeout-minutes: 300
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-github-Win2022-GPU-A10"]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: 'none'
Expand Down
Loading
Loading