Skip to content

Commit b46df78

Browse files
committed
trial
Signed-off-by: Ivy Zhang <[email protected]>
1 parent 1f72343 commit b46df78

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

tests/integration/defs/accuracy/references/cnn_dailymail.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,8 @@ Qwen/Qwen2-0.5B-Instruct:
251251
accuracy: 30.930
252252
- quant_algo: FP8
253253
accuracy: 31.140
254+
Qwen/Qwen2-1.5B:
255+
- accuracy: 32.58
254256
Qwen/Qwen2-7B-Instruct:
255257
- accuracy: 36.148
256258
- quant_algo: W8A16

tests/integration/defs/accuracy/test_cli_flow.py

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1137,12 +1137,6 @@ class TestQwen2_0_5BInstruct(CliFlowAccuracyTestHarness):
11371137
def test_auto_dtype(self):
11381138
self.run(dtype='auto')
11391139

1140-
@pytest.mark.skip(reason="https://nvbugs/5280195")
1141-
@pytest.mark.skip_less_device(4)
1142-
def test_auto_dtype_cp4(self):
1143-
"RCCA: https://nvbugs/5170106"
1144-
self.run(dtype='auto', cp_size=4)
1145-
11461140
@skip_post_blackwell
11471141
def test_weight_only(self):
11481142
self.run(quant_algo=QuantAlgo.W8A16)
@@ -1154,6 +1148,17 @@ def test_fp8(self):
11541148
quant_algo=QuantAlgo.FP8)
11551149

11561150

1151+
class TestQwen2_1_5B(CliFlowAccuracyTestHarness):
1152+
MODEL_NAME = "Qwen/Qwen2-1.5B"
1153+
MODEL_PATH = f"{llm_models_root()}/Qwen2-1.5B"
1154+
EXAMPLE_FOLDER = "models/core/qwen"
1155+
1156+
@pytest.mark.skip_less_device(4)
1157+
def test_auto_dtype_cp4(self):
1158+
"RCCA: https://nvbugs/5170106"
1159+
self.run(dtype='auto', cp_size=4)
1160+
1161+
11571162
class TestQwen2_7BInstruct(CliFlowAccuracyTestHarness):
11581163
MODEL_NAME = "Qwen/Qwen2-7B-Instruct"
11591164
MODEL_PATH = f"{llm_models_root()}/Qwen2-7B-Instruct"

tests/integration/test_lists/qa/examples_test_list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,9 +400,9 @@ accuracy/test_cli_flow.py::TestGemma2_9BIt::test_weight_only[int4]
400400
accuracy/test_cli_flow.py::TestQwen1_5MoeA2_7BChat::test_auto_dtype
401401
accuracy/test_cli_flow.py::TestQwen1_5MoeA2_7BChat::test_weight_only
402402
accuracy/test_cli_flow.py::TestQwen2_0_5BInstruct::test_auto_dtype
403-
accuracy/test_cli_flow.py::TestQwen2_0_5BInstruct::test_auto_dtype_cp4
404403
accuracy/test_cli_flow.py::TestQwen2_0_5BInstruct::test_weight_only
405404
accuracy/test_cli_flow.py::TestQwen2_0_5BInstruct::test_fp8
405+
accuracy/test_cli_flow.py::TestQwen2_1_5B::test_auto_dtype_cp4
406406
accuracy/test_llm_api.py::TestQwen2_7BInstruct::test_auto_dtype
407407
accuracy/test_llm_api.py::TestQwen2_7BInstruct::test_weight_only
408408
accuracy/test_cli_flow.py::TestQwen2_7BInstruct::test_int4_awq_prequantized

0 commit comments

Comments
 (0)