-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8236a87
commit 1bacd02
Showing
7 changed files
with
572 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# FIXME: move this test to the appropriate test file!!! | ||
|
||
import copy | ||
|
||
from torchao.quantization import quantize_ | ||
from torchao.quantization.quant_api import int8_dynamic_activation_int4_weight | ||
|
||
import torch | ||
from torch.testing._internal.common_utils import ( | ||
TestCase, | ||
run_tests, | ||
) | ||
|
||
import pytest | ||
|
||
|
||
class ToyModel(torch.nn.Module): | ||
def __init__(self): | ||
super().__init__() | ||
self.linear = torch.nn.Linear(128, 32) | ||
|
||
def forward(self, x): | ||
x = self.linear(x) | ||
return x | ||
|
||
|
||
class TestS8S4LinearCUTLASS(TestCase): | ||
@pytest.mark.skipif(not torch.cuda.is_available(), reason="CUDA not available") | ||
def test_s8s4_linear_cutlass_(self): | ||
# FIXME: remove this! | ||
torch.manual_seed(0) | ||
|
||
input = torch.rand((64, 128)).half().cuda() | ||
model = ToyModel().half().cuda() | ||
|
||
output_ref = model(input) | ||
|
||
modelq = copy.deepcopy(model) | ||
quantize_(modelq, int8_dynamic_activation_int4_weight(group_size=128)) | ||
output = modelq(input) | ||
|
||
assert torch.allclose(output, output_ref, rtol=1e-1, atol=0) | ||
|
||
|
||
if __name__ == "__main__": | ||
run_tests() |
Oops, something went wrong.