Improve numerical stability of zero_point shift in aimet-torch #1813
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: CI pipeline | |
| on: | |
| push: | |
| branches: [ develop ] | |
| pull_request: | |
| branches: [ develop, release-* ] | |
| # Cancel in-progress runs exclusively for PR jobs. `github.head_ref` is defined only for PRs, | |
| # for post-merge, it defaults to `github.run_id`, which is guaranteed to be unique. | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| dco: | |
| if: github.server_url != 'https://github.com' | |
| uses: ./.github/workflows/dco.yml | |
| pipeline: | |
| if: github.server_url != 'https://github.com' | |
| needs: dco | |
| uses: ./.github/workflows/pipeline.yml | |
| secrets: inherit |