We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e151d6a commit 95525a4Copy full SHA for 95525a4
.github/workflows/torchao_experimental_test.yml
@@ -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
10
11
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
27
+ python-version: 3.10.11
28
+ - name: Install TorchAO
29
+ run: |
30
+ USE_CPP=1 pip install .
31
+ - name: Run tests
32
33
+ python torchao/experimental/tests/test_packed_linear_int8_dynamic_activation_intx_weight_layout.py
0 commit comments