Reject QDQ Gemm→QGemm fusion when alpha != 1 with bias #1149
Workflow file for this run
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
| name: Update C/C++ API Docs | |
| # Run when the C API changes or every week so that the artifact does not expire. | |
| # Also runs on pull requests that touch relevant files so doc generation errors | |
| # are caught early. The artifact is only published on the main branch. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - include/onnxruntime/core/session/** | |
| - orttraining/orttraining/training_api/include/** | |
| - docs/c_cxx/** | |
| pull_request: | |
| paths: | |
| - include/onnxruntime/core/session/** | |
| - orttraining/orttraining/training_api/include/** | |
| - docs/c_cxx/** | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| workflow_dispatch: | |
| concurrency: | |
| group: "apidocs-c-${{ github.ref }}" | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| name: Generate C/C++ API docs | |
| runs-on: [ | |
| "self-hosted", | |
| "1ES.Pool=onnxruntime-github-Ubuntu2204-AMD-CPU", | |
| "JobId=apidocs-c-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}" | |
| ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install doxygen and dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt-get install libclang-dev | |
| sudo apt-get install libclang-cpp14 | |
| wget https://www.doxygen.nl/files/doxygen-1.9.8.linux.bin.tar.gz | |
| tar xvzf doxygen-1.9.8.linux.bin.tar.gz | |
| - name: Run doxygen | |
| run: | | |
| mkdir -p build/doxygen | |
| cd docs/c_cxx | |
| ../../doxygen-1.9.8/bin/doxygen | |
| - name: Log source commit | |
| run: git rev-parse --short HEAD > build/doxygen/html/source-version.txt | |
| - name: Move C/C++ docs into site | |
| run: | | |
| mkdir -p _site/docs/api | |
| rm -rf _site/docs/api/c | |
| mv build/doxygen/html _site/docs/api/c | |
| - name: Upload new site | |
| if: github.ref == 'refs/heads/main' | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: onnxruntime-c-apidocs | |
| path: _site | |
| retention-days: 10 |