We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97d29ef commit ce1cfccCopy full SHA for ce1cfcc
sharktank/tests/models/deepseek/test_deepseek.py
@@ -12,6 +12,11 @@
12
import torch
13
14
15
+@pytest.mark.xfail(
16
+ reason="https://github.com/nod-ai/shark-ai/issues/1015",
17
+ strict=False,
18
+ raises=AssertionError,
19
+)
20
def test_deepseek():
21
theta, config = generate(12345)
22
model = PagedDeepseekModelV1(theta=theta, config=config)
sharktank/tests/models/llama/test_llama.py
def test_llama():
model = PagedLlamaModelV1(theta=theta, config=config)
0 commit comments