aboutsummaryrefslogtreecommitdiff
path: root/tests/test_cli_commands.py
diff options
context:
space:
mode:
authorNathan Bailey <nathan.bailey@arm.com>2024-01-16 16:39:06 +0000
committerNathan Bailey <nathan.bailey@arm.com>2024-02-09 14:31:46 +0000
commitd08513a72e7fbf0626c3d69b9c4cc7056b3da4ae (patch)
tree3d332d70dbc57b6b7255bb4b429b322ad90bb2c1 /tests/test_cli_commands.py
parentbe7bab89eb8ace6ab6a83687354beab156afb716 (diff)
downloadmlia-d08513a72e7fbf0626c3d69b9c4cc7056b3da4ae.tar.gz
feat: Integrate Vela's per-layer performance estimates
Resolves: MLIA-1055, MLIA-1056, MLIA-1057 Signed-off-by: Nathan Bailey <nathan.bailey@arm.com> Change-Id: Id573cec94e4a69117051dcd5175f383c0955d890
Diffstat (limited to 'tests/test_cli_commands.py')
-rw-r--r--tests/test_cli_commands.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_cli_commands.py b/tests/test_cli_commands.py
index 6b1f19d..480e642 100644
--- a/tests/test_cli_commands.py
+++ b/tests/test_cli_commands.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
+# SPDX-FileCopyrightText: Copyright 2022-2024, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Tests for cli.commands module."""
from __future__ import annotations
@@ -13,6 +13,7 @@ from unittest.mock import MagicMock
import pytest
from mlia.backend.manager import DefaultInstallationManager
+from mlia.backend.vela.performance import LayerwisePerfInfo
from mlia.cli.commands import backend_install
from mlia.cli.commands import backend_list
from mlia.cli.commands import backend_uninstall
@@ -207,6 +208,7 @@ def mock_performance_estimation(monkeypatch: pytest.MonkeyPatch) -> None:
EthosUConfiguration.load_profile("ethos-u55-256"),
NPUCycles(1, 2, 3, 4, 5, 6),
MemoryUsage(1, 2, 3, 4, 5),
+ LayerwisePerfInfo(layerwise_info=[]),
)
monkeypatch.setattr(
"mlia.target.ethos_u.data_collection.EthosUPerformanceEstimator.estimate",