We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270b87b commit 917f8d5Copy full SHA for 917f8d5
tests/e2e/singlecard/multi-modal/test_internvl.py
@@ -24,7 +24,7 @@
24
from vllm.assets.image import ImageAsset
25
26
from tests.e2e.conftest import VllmRunner
27
-from tests.e2e.model_utils import check_outputs_similar
+from tests.e2e.model_utils import check_outputs_equal
28
29
MODELS = [
30
"OpenGVLab/InternVL2-8B",
@@ -83,9 +83,7 @@ def test_internvl_basic(model: str):
83
eager_outputs = outputs["eager"]
84
graph_outputs = outputs["graph"]
85
86
- # Compare eager and graph outputs using similarity check
87
- # NOTE: InternVL3.5-8B model shows minor differences between modes
88
- check_outputs_similar(
+ check_outputs_equal(
89
outputs_0_lst=eager_outputs,
90
outputs_1_lst=graph_outputs,
91
name_0="eager mode",
0 commit comments