benchmarks.yml 523 B

12345678910111213141516171819202122
  1. name: Build and Test
  2. on:
  3. push:
  4. branches: [ '*' ]
  5. tags: [ '*' ]
  6. pull_request:
  7. branches: [ '*' ]
  8. jobs:
  9. test-m4-cluster:
  10. strategy:
  11. matrix:
  12. model: ['llama-3.2-1b', 'llama-3.2-3b']
  13. # Optional: add fail-fast: false if you want all matrix jobs to continue even if one fails
  14. fail-fast: false
  15. uses: ./.github/workflows/bench_job.yml
  16. with:
  17. config: '{"M4PRO_GPU16_24GB": 2}'
  18. model: ${{ matrix.model }}
  19. calling_job_name: 'test-m4-cluster'
  20. secrets: inherit