Skip to content

Commit

Permalink
tests for rvc3 non quantized
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlov721 committed Jul 17, 2024
1 parent 50b6b69 commit 62ca8dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def prepare(
converted_model_path = (
converted_model_path_prefix / f"{model_name}.dlc"
)
elif service in ["rvc2", "rvc3"]:
elif service in ["rvc2", "rvc3", "rvc3_non_quant"]:
converted_model_path = (
converted_model_path_prefix
/ "intermediate_outputs"
Expand Down
4 changes: 4 additions & 0 deletions tests/test_packages/test_rvc3.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ def test_resnet18_convert(rvc3_resnet18_onnx_env):
check_convert(rvc3_resnet18_onnx_env)


def test_resnet18_non_quant_convert(rvc3_non_quant_resnet18_onnx_env):
check_convert(rvc3_non_quant_resnet18_onnx_env)


def test_resnet18_ir_convert(rvc3_resnet18_ir_env):
check_convert(rvc3_resnet18_ir_env)

Expand Down

0 comments on commit 62ca8dd

Please sign in to comment.