Skip to content

Commit 95525a4

Browse files
committed
add torchao/experimental CI test
1 parent e151d6a commit 95525a4

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
steps:
20+
- name: Checkout repo
21+
uses: actions/checkout@v3
22+
with:
23+
submodules: true
24+
- name: Setup Python
25+
uses: actions/setup-python@v2
26+
with:
27+
python-version: 3.10.11
28+
- name: Install TorchAO
29+
run: |
30+
USE_CPP=1 pip install .
31+
- name: Run tests
32+
run: |
33+
python torchao/experimental/tests/test_packed_linear_int8_dynamic_activation_intx_weight_layout.py

0 commit comments

Comments
 (0)