From fa1fad9332e2912f12a44a1b07716ee434174308 Mon Sep 17 00:00:00 2001 From: Benjamin Klimczak Date: Wed, 8 Feb 2023 16:00:34 +0000 Subject: MLIA-769 Replace use of 'device' with 'target' Term 'device' can be ambiguous and is replaced with 'target'. Change-Id: I5e5108d033a13b98e4c2997713e1c32bce63ae62 --- tests/test_backend_vela_compiler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_backend_vela_compiler.py') diff --git a/tests/test_backend_vela_compiler.py b/tests/test_backend_vela_compiler.py index 2d937ea..0434ccf 100644 --- a/tests/test_backend_vela_compiler.py +++ b/tests/test_backend_vela_compiler.py @@ -158,8 +158,8 @@ def test_optimize_model(tmp_path: Path, test_tflite_model: Path) -> None: """Test model optimization and saving into file.""" tmp_file = tmp_path / "temp.tflite" - device = EthosUConfiguration.load_profile("ethos-u55-256") - optimize_model(test_tflite_model, device.compiler_options, tmp_file.absolute()) + target = EthosUConfiguration.load_profile("ethos-u55-256") + optimize_model(test_tflite_model, target.compiler_options, tmp_file.absolute()) assert tmp_file.is_file() assert tmp_file.stat().st_size > 0 -- cgit v1.2.1