Skip to content

Commit abd41e5

Browse files
authored
Add torchao/experimental CI test (#1586)
* add torchao/experimental CI test * up * up * up * up * up * up
1 parent e151d6a commit abd41e5

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Run TorchAO Experimental Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- 'gh/**'
8+
pull_request:
9+
branches:
10+
- main
11+
- 'gh/**'
12+
13+
jobs:
14+
test:
15+
strategy:
16+
matrix:
17+
runner: [macos-14]
18+
runs-on: ${{matrix.runner}}
19+
defaults:
20+
run:
21+
shell: bash -el {0}
22+
steps:
23+
- name: Checkout repo
24+
uses: actions/checkout@v3
25+
with:
26+
submodules: true
27+
- name: Setup environment
28+
uses: conda-incubator/setup-miniconda@v3
29+
with:
30+
python-version: "3.10"
31+
miniconda-version: "latest"
32+
activate-environment: venv
33+
- name: Install requirements
34+
run: |
35+
conda activate venv
36+
pip install --extra-index-url "https://download.pytorch.org/whl/nightly/cpu" torch=="2.6.0.dev20250104"
37+
pip install numpy
38+
USE_CPP=1 pip install .
39+
- name: Run tests
40+
run: |
41+
conda activate venv
42+
python torchao/experimental/tests/test_packed_linear_int8_dynamic_activation_intx_weight_layout.py

0 commit comments

Comments
 (0)