aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/backend/tosa_checker/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlia/backend/tosa_checker/__init__.py')
-rw-r--r--src/mlia/backend/tosa_checker/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mlia/backend/tosa_checker/__init__.py b/src/mlia/backend/tosa_checker/__init__.py
index 19fc8be..c06a122 100644
--- a/src/mlia/backend/tosa_checker/__init__.py
+++ b/src/mlia/backend/tosa_checker/__init__.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
"""TOSA checker backend module."""
from mlia.backend.config import BackendConfiguration
@@ -10,7 +10,7 @@ from mlia.core.common import AdviceCategory
registry.register(
"TOSA-Checker",
BackendConfiguration(
- supported_advice=[AdviceCategory.OPERATORS],
+ supported_advice=[AdviceCategory.COMPATIBILITY],
supported_systems=[System.LINUX_AMD64],
backend_type=BackendType.WHEEL,
),