We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95525a4 commit 04f3f03Copy full SHA for 04f3f03
.github/workflows/torchao_experimental_test.yml
@@ -21,13 +21,14 @@ jobs:
21
uses: actions/checkout@v3
22
with:
23
submodules: true
24
- - name: Setup Python
25
- uses: actions/setup-python@v2
+ - uses: conda-incubator/setup-miniconda@v3
26
27
- python-version: 3.10.11
28
- - name: Install TorchAO
29
- run: |
30
- USE_CPP=1 pip install .
+ python-version: "3.10"
+ miniconda-version: "latest"
+ activate-environment: venv
31
- name: Run tests
32
run: |
+ pip install --extra-index-url "https://download.pytorch.org/whl/nightly/cpu" torch=="2.6.0.dev20250104"
+ USE_CPP=1 pip install .
33
+
34
python torchao/experimental/tests/test_packed_linear_int8_dynamic_activation_intx_weight_layout.py
0 commit comments