aboutsummaryrefslogtreecommitdiff
path: root/tests/test_target_cortex_a_reporters.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_target_cortex_a_reporters.py')
-rw-r--r--tests/test_target_cortex_a_reporters.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/test_target_cortex_a_reporters.py b/tests/test_target_cortex_a_reporters.py
new file mode 100644
index 0000000..4b39aa1
--- /dev/null
+++ b/tests/test_target_cortex_a_reporters.py
@@ -0,0 +1,53 @@
+# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-License-Identifier: Apache-2.0
+"""Tests for Cortex-A reporters."""
+from typing import Any
+
+import pytest
+
+from mlia.core.advice_generation import Advice
+from mlia.core.reporting import Report
+from mlia.nn.tensorflow.tflite_compat import TFLiteCompatibilityInfo
+from mlia.nn.tensorflow.tflite_compat import TFLiteCompatibilityStatus
+from mlia.nn.tensorflow.tflite_graph import TFL_ACTIVATION_FUNCTION
+from mlia.target.cortex_a.config import CortexAConfiguration
+from mlia.target.cortex_a.operators import Operator
+from mlia.target.cortex_a.reporters import cortex_a_formatters
+from mlia.target.cortex_a.reporters import report_device
+
+
+def test_report_device() -> None:
+ """Test function report_device()."""
+ report = report_device(CortexAConfiguration("cortex-a"))
+ assert report.to_plain_text()
+
+
+@pytest.mark.parametrize(
+ "data",
+ (
+ [Advice(["Sample", "Advice"])],
+ TFLiteCompatibilityInfo(status=TFLiteCompatibilityStatus.COMPATIBLE),
+ [
+ Operator(
+ name="Test",
+ location="loc",
+ support_type=Operator.SupportType.OP_NOT_SUPPORTED,
+ activation_func=TFL_ACTIVATION_FUNCTION.NONE,
+ )
+ ],
+ ),
+)
+def test_cortex_a_formatters(data: Any) -> None:
+ """Test function cortex_a_formatters() with valid input."""
+ formatter = cortex_a_formatters(data)
+ report = formatter(data)
+ assert isinstance(report, Report)
+
+
+def test_cortex_a_formatters_invalid_data() -> None:
+ """Test cortex_a_formatters() with invalid input."""
+ with pytest.raises(
+ Exception,
+ match=r"^Unable to find appropriate formatter for .*",
+ ):
+ cortex_a_formatters(12)