Skip to content

Commit

Permalink
run levanter tests in Haliax
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwh committed Jun 11, 2024
1 parent 2c88c4c commit 22c6bf0
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_pre_commit.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Pre-Commit

on: [push]
on: [push, pull_request]

jobs:
build:
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/run_quick_levanter_tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Run Tests

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.11
uses: actions/setup-python@v4
with:
python-version: 3.10.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install --upgrade "jax[cpu]==0.4.25" "jaxlib[cpu]==0.4.25"
- name: Install Levanter from source
run: |
git clone "git+https://github.com/stanford-crfm/levanter.git"
cd levanter
pip install .
- name: Install Haliax on top
run: |
# install levanter main
cd ..
pip install .[dev]
- name: Test levanter with pytest
run: |
cd levanter
XLA_FLAGS=--xla_force_host_platform_device_count=8 PYTHONPATH=tests:src:../src pytest tests -m "not entry and not slow"
9 changes: 3 additions & 6 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
name: Run Tests

on: [push]
on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.10.11
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: 3.10.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 22c6bf0

Please sign in to comment.