Skip to content

Commit 5c384b4

Browse files
committed
push
1 parent 246e4b3 commit 5c384b4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/prototype/test_low_bit_optim.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,6 @@ def test_optim_4bit_correctness(self, optim_name):
145145
def test_optim_fp8_smoke(self, optim_name, device):
146146
if device == "cuda" and torch.cuda.get_device_capability() < (8, 9):
147147
pytest.skip("FP8 requires compute capability >= 8.9")
148-
if device == "cpu" and not TORCH_VERSION_AFTER_2_4:
149-
pytest.skip("fill_cpu not implemented for 'Float8_e4m3fn")
150148

151149
model = nn.Sequential(nn.Linear(32, 1024), nn.ReLU(), nn.Linear(1024, 128)).to(device)
152150
optim = getattr(low_bit_optim, optim_name)(model.parameters())

0 commit comments

Comments
 (0)