Commit 136cacb
authored
Remove tensor parallel test for v1 of Int8DynamicActivationInt8WeightConfig (#4169)
Summary:
CI is failiing:
```
The error occurs because torch.compile with DTensor generates wrapper code that tries to access tensor_impl on the outer LinearActivationQuantizedTensor instead of the inner AffineQuantizedTensor. This is a
torch.compile subclass handling issue with the deeply nested subclass hierarchy in version 1: DTensor(LinearActivationQuantizedTensor(AffineQuantizedTensor(...))).
The test uses Int8DynamicActivationInt8WeightConfig() with default version=1, which creates this nested structure. Version 2 uses Int8Tensor which avoids the problematic nesting.
```
v2 doesn't support view op so it won't work either. We haven't heard of a use case for this actually, it's used in some demos but didn't hear about real users yet.
Therefore we delete the test in the PR, we'll be deleting v1 configs in the future as well.
Test Plan:
CI
Reviewers:
Subscribers:
Tasks:
Tags:
[ghstack-poisoned]1 parent 8fca033 commit 136cacb
1 file changed
Lines changed: 0 additions & 13 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
22 | 21 | | |
23 | 22 | | |
24 | 23 | | |
| |||
149 | 148 | | |
150 | 149 | | |
151 | 150 | | |
152 | | - | |
153 | | - | |
154 | | - | |
155 | | - | |
156 | | - | |
157 | | - | |
158 | | - | |
159 | | - | |
160 | | - | |
161 | | - | |
162 | | - | |
163 | 151 | | |
164 | 152 | | |
165 | | - | |
166 | 153 | | |
167 | 154 | | |
168 | 155 | | |
| |||
0 commit comments