add access pattern inner_dims method (#349) #198
This file contains 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: Run benchmarks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '.github/workflows/run-benchmarks.yml' | |
- 'benchmarks/**' | |
jobs: | |
run-benchmarks: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
cache: true | |
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }} | |
- name: Run benchmarks | |
run: pixi run python genbenchmark.py | |
working-directory: benchmarks/${{ matrix.kernel }} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.kernel }} | |
path: benchmarks/${{ matrix.kernel }}/output | |
strategy: | |
matrix: | |
kernel: [dense_matmul] |