aboutsummaryrefslogtreecommitdiff
path: root/tests/test_target_ethos_u_performance.py
diff options
context:
space:
mode:
authorDmitrii Agibov <dmitrii.agibov@arm.com>2022-11-18 17:21:09 +0000
committerDmitrii Agibov <dmitrii.agibov@arm.com>2022-11-29 14:44:13 +0000
commit6a88ee5315b4ce5b023370c1e55e48bf9f2b6f67 (patch)
tree88edabf90228724f4fe2944b0ab23859d824a880 /tests/test_target_ethos_u_performance.py
parenta34163c9d9a5cc0416bcaea2ebf8383bda9d505c (diff)
downloadmlia-6a88ee5315b4ce5b023370c1e55e48bf9f2b6f67.tar.gz
Rename modules
- Rename module "mlia.devices" into "mlia.target" - Rename module "mlia.target.ethosu" into "mlia.target.ethos_u" - Rename module "mlia.target.cortexa" into "mlia.target.cortex_a" - Rename and update tests Change-Id: I6dca7c8646d881f739fb6b5914d1cc7e45e63dc2
Diffstat (limited to 'tests/test_target_ethos_u_performance.py')
-rw-r--r--tests/test_target_ethos_u_performance.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/test_target_ethos_u_performance.py b/tests/test_target_ethos_u_performance.py
new file mode 100644
index 0000000..76860b5
--- /dev/null
+++ b/tests/test_target_ethos_u_performance.py
@@ -0,0 +1,28 @@
+# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-License-Identifier: Apache-2.0
+"""Performance estimation tests."""
+from unittest.mock import MagicMock
+
+import pytest
+
+from mlia.target.ethos_u.performance import MemorySizeType
+from mlia.target.ethos_u.performance import MemoryUsage
+
+
+def test_memory_usage_conversion() -> None:
+ """Test MemoryUsage objects conversion."""
+ memory_usage_in_kb = MemoryUsage(1, 2, 3, 4, 5, MemorySizeType.KILOBYTES)
+ assert memory_usage_in_kb.in_kilobytes() == memory_usage_in_kb
+
+ memory_usage_in_bytes = MemoryUsage(
+ 1 * 1024, 2 * 1024, 3 * 1024, 4 * 1024, 5 * 1024
+ )
+ assert memory_usage_in_bytes.in_kilobytes() == memory_usage_in_kb
+
+
+def mock_performance_estimation(monkeypatch: pytest.MonkeyPatch) -> None:
+ """Mock performance estimation."""
+ monkeypatch.setattr(
+ "mlia.backend.corstone.performance.estimate_performance",
+ MagicMock(return_value=MagicMock()),
+ )