aboutsummaryrefslogtreecommitdiff
path: root/tests/test_devices_ethosu_performance.py
diff options
context:
space:
mode:
authorDmitrii Agibov <dmitrii.agibov@arm.com>2022-11-18 16:34:03 +0000
committerDmitrii Agibov <dmitrii.agibov@arm.com>2022-11-29 14:44:13 +0000
commit37959522a805a5e23c930ed79aac84920c3cb208 (patch)
tree484af1240a93c955a72ce2e452432383b6704b56 /tests/test_devices_ethosu_performance.py
parent5568f9f000d673ac53e710dcc8991fec6e8a5488 (diff)
downloadmlia-37959522a805a5e23c930ed79aac84920c3cb208.tar.gz
Move backends functionality into separate modules
- Move backend management/executor code into module backend_core - Create separate module for each backend in "backend" module - Move each backend into corresponding module - Split Vela wrapper into several submodules Change-Id: If01b6774aab6501951212541cc5d7f5aa7c97e95
Diffstat (limited to 'tests/test_devices_ethosu_performance.py')
-rw-r--r--tests/test_devices_ethosu_performance.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_devices_ethosu_performance.py b/tests/test_devices_ethosu_performance.py
index b3e5298..3ff73d8 100644
--- a/tests/test_devices_ethosu_performance.py
+++ b/tests/test_devices_ethosu_performance.py
@@ -23,6 +23,6 @@ def test_memory_usage_conversion() -> None:
def mock_performance_estimation(monkeypatch: pytest.MonkeyPatch) -> None:
"""Mock performance estimation."""
monkeypatch.setattr(
- "mlia.backend.manager.estimate_performance",
+ "mlia.backend.corstone.performance.estimate_performance",
MagicMock(return_value=MagicMock()),
)