Compare commits

...

3 Commits

Author SHA1 Message Date
c45575bfc3 tc 2025-10-10 08:33:46 -07:00
244f356be7 lint 2025-10-10 08:31:48 -07:00
b4187fc6af tc 2025-10-10 08:30:46 -07:00

View File

@ -17,7 +17,11 @@ from torch.testing._internal.common_device_type import (
from torch.testing._internal.common_quantized import (
_calculate_dynamic_per_channel_qparams,
)
from torch.testing._internal.common_utils import parametrize, TEST_CUDA
from torch.testing._internal.common_utils import (
parametrize,
TEST_CUDA,
TEST_WITH_SLOW_GRADCHECK,
)
try:
@ -79,6 +83,7 @@ class TestSelectAlgorithmCuda(BaseTestSelectAlgorithm):
@parametrize("in_features", (128, 144, 1024))
@parametrize("out_features", (64, 65, 1024))
@unittest.skipIf(not TEST_CUDA, "CUDA not available")
@unittest.skipIf(TEST_WITH_SLOW_GRADCHECK, "Leaking memory")
def test_int8_woq_mm_cuda(
self, dtype, batch_size, mid_dim, in_features, out_features
):