Skip to content

Commit

Permalink
skip test in fbcode
Browse files Browse the repository at this point in the history
  • Loading branch information
jainapurva committed Nov 15, 2024
1 parent 06ad55a commit 6e3153b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/quantization/test_marlin_qqq.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
MappingType,
choose_qparams_and_quantize_affine_qqq,
)
from torchao.utils import TORCH_VERSION_AT_LEAST_2_5
from torchao.utils import TORCH_VERSION_AT_LEAST_2_5, is_fbcode
import unittest

if is_fbcode():
unittest.skip("Skipping the test in fbcode since we don't have TARGET file for kernels")


class MarlinQQQ(TestCase):
Expand Down

0 comments on commit 6e3153b

Please sign in to comment.