Add a workflow to run benchmarks #11
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: Benchmarks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
multiprocess_gpu_test: | |
runs-on: ubuntu-latest # For self-hosted runners with GPUs, update accordingly. | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
pip install absl-py | |
pip install -U jax | |
pip install -U "jax[cuda12]" | |
pip install google-benchmark | |
- name: Run Multiprocess GPU Test | |
run: | | |
python -m pytest tests/multiprocess_gpu_test.py | |
python -m pytest benchmarks/*.py |