Skip to content

Commit b40c08c

Browse files
committed
update
1 parent 40a69c6 commit b40c08c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/prototype/test_sparse_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class TestSemiStructuredSparse(common_utils.TestCase):
3131

3232
@unittest.skipIf(not TORCH_VERSION_AT_LEAST_2_3, "pytorch 2.3+ feature")
3333
@unittest.skipIf(not torch.cuda.is_available(), "Need CUDA available")
34-
@unittest.skipTest("Temporarily skipping to unpin nightlies")
34+
@unittest.skip("Temporarily skipping to unpin nightlies")
3535
def test_sparse(self):
3636
input = torch.rand((128, 128)).half().cuda()
3737
model = (

test/sparsity/test_fast_sparse_training.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class TestRuntimeSemiStructuredSparsity(TestCase):
3131
@unittest.skipIf(not TORCH_VERSION_AT_LEAST_2_4, "pytorch 2.4+ feature")
3232
@unittest.skipIf(not torch.cuda.is_available(), "Need CUDA available")
3333
@unittest.skipIf(is_fbcode(), "broken in fbcode")
34-
@unittest.skipTest("Temporarily skipping to unpin nightlies")
34+
@unittest.skip("Temporarily skipping to unpin nightlies")
3535
def test_runtime_weight_sparsification(self):
3636
# need this import inside to not break 2.2 tests
3737
from torch.sparse import SparseSemiStructuredTensorCUSPARSELT
@@ -73,7 +73,7 @@ def test_runtime_weight_sparsification(self):
7373
@unittest.skipIf(not TORCH_VERSION_AT_LEAST_2_4, "pytorch 2.4+ feature")
7474
@unittest.skipIf(not torch.cuda.is_available(), "Need CUDA available")
7575
@unittest.skipIf(is_fbcode(), "broken in fbcode")
76-
@unittest.skipTest("Temporarily skipping to unpin nightlies")
76+
@unittest.skip("Temporarily skipping to unpin nightlies")
7777
def test_runtime_weight_sparsification_compile(self):
7878
# need this import inside to not break 2.2 tests
7979
from torch.sparse import SparseSemiStructuredTensorCUSPARSELT

0 commit comments

Comments
 (0)