Skip to content

Commit d3e5060

Browse files
differnet expectations for A10 vs A100
1 parent 41baf10 commit d3e5060

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/models/mistral3/test_modeling_mistral3.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,8 @@ def test_mistral3_integration_batched_generate(self):
355355
expected_outputs = Expectations(
356356
{
357357
("xpu", 3): "Calm lake's mirror gleams,\nWhispering pines stand in silence,\nPath to peace begins.",
358-
("cuda", 8): "Calm waters reflect\nWooden path to distant shore\nSilence in the woods",
358+
("cuda", (8, 0)): "Wooden path to calm,\nReflections whisper secrets,\nNature's peace unfolds.",
359+
("cuda", (8, 6)): "Calm waters reflect\nWooden path to distant shore\nSilence in the woods",
359360
("rocm", (9, 5)): "Calm waters reflect\nWooden path to distant shore\nSilence in the scene"
360361
}
361362
) # fmt: skip
@@ -433,7 +434,7 @@ def test_mistral3_integration_batched_generate_multi_image(self):
433434
expected_outputs = Expectations(
434435
{
435436
("cuda", 8): "Calm waters reflect\nWooden path to distant shore\nPeace in nature's hold",
436-
("rocm", (9, 4)): "Calm waters reflect\nWooden path to distant shore\nSilence in the pines",
437+
("rocm", (9, 4)): "Calm waters reflect\nWooden path to distant shore\nSilence in the pines"
437438
}
438439
) # fmt: skip
439440
expected_output = expected_outputs.get_expectation()

0 commit comments

Comments
 (0)