aboutsummaryrefslogtreecommitdiff
path: root/tests/test_target_cortex_a_advice_generation.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_target_cortex_a_advice_generation.py')
-rw-r--r--tests/test_target_cortex_a_advice_generation.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/test_target_cortex_a_advice_generation.py b/tests/test_target_cortex_a_advice_generation.py
index 6effe4c..1997c52 100644
--- a/tests/test_target_cortex_a_advice_generation.py
+++ b/tests/test_target_cortex_a_advice_generation.py
@@ -1,4 +1,4 @@
-# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""Tests for advice generation."""
from __future__ import annotations
@@ -31,7 +31,7 @@ BACKEND_INFO = (
[
[
ModelIsNotCortexACompatible(BACKEND_INFO, {"UNSUPPORTED_OP"}, {}),
- AdviceCategory.OPERATORS,
+ {AdviceCategory.COMPATIBILITY},
[
Advice(
[
@@ -61,7 +61,7 @@ BACKEND_INFO = (
)
},
),
- AdviceCategory.OPERATORS,
+ {AdviceCategory.COMPATIBILITY},
[
Advice(
[
@@ -93,7 +93,7 @@ BACKEND_INFO = (
],
[
ModelIsCortexACompatible(BACKEND_INFO),
- AdviceCategory.OPERATORS,
+ {AdviceCategory.COMPATIBILITY},
[
Advice(
[
@@ -108,7 +108,7 @@ BACKEND_INFO = (
flex_ops=["flex_op1", "flex_op2"],
custom_ops=["custom_op1", "custom_op2"],
),
- AdviceCategory.OPERATORS,
+ {AdviceCategory.COMPATIBILITY},
[
Advice(
[
@@ -142,7 +142,7 @@ BACKEND_INFO = (
],
[
ModelIsNotTFLiteCompatible(),
- AdviceCategory.OPERATORS,
+ {AdviceCategory.COMPATIBILITY},
[
Advice(
[
@@ -154,7 +154,7 @@ BACKEND_INFO = (
],
[
ModelHasCustomOperators(),
- AdviceCategory.OPERATORS,
+ {AdviceCategory.COMPATIBILITY},
[
Advice(
[
@@ -166,7 +166,7 @@ BACKEND_INFO = (
],
[
TFLiteCompatibilityCheckFailed(),
- AdviceCategory.OPERATORS,
+ {AdviceCategory.COMPATIBILITY},
[
Advice(
[
@@ -181,7 +181,7 @@ BACKEND_INFO = (
def test_cortex_a_advice_producer(
tmpdir: str,
input_data: DataItem,
- advice_category: AdviceCategory,
+ advice_category: set[AdviceCategory],
expected_advice: list[Advice],
) -> None:
"""Test Cortex-A advice producer."""