Stable logsumexp softmax gradients without rewrites #4310
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
| # GitHub Actions security analysis via zizmor. | |
| # Recommended workflow from https://docs.zizmor.sh/integrations/ | |
| name: zizmor GHA analysis | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["**"] | |
| # Cancel superseded in-progress runs for the same PR/branch. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| zizmor: | |
| name: Run zizmor 🌈 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write # upload SARIF results to code scanning | |
| contents: read # checkout the repository | |
| actions: read # read workflow definitions during online audits | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| # Runs zizmor (version: latest), online audits enabled via the workflow | |
| # token, and uploads SARIF to code scanning by default. | |
| - name: Run zizmor 🌈 | |
| uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7 |