[MoE] Add mixtral 3B/7B fp8 configs and grok bf16/fp8 configs #867
Workflow file for this run
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: launcher | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./launcher_scripts | |
steps: | |
- name: checkout the repo | |
uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
python -m pip install pytest requests-mock -r requirements.txt | |
- name: run unit tests | |
run: PYTHONPATH=$PWD pytest | |
working-directory: ${{env.working-directory}} |