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__.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mlia/backend/tosa_checker/__init__.py b/src/mlia/backend/tosa_checker/__init__.py
index cec210d..19fc8be 100644
--- a/src/mlia/backend/tosa_checker/__init__.py
+++ b/src/mlia/backend/tosa_checker/__init__.py
@@ -1,3 +1,17 @@
# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
"""TOSA checker backend module."""
+from mlia.backend.config import BackendConfiguration
+from mlia.backend.config import BackendType
+from mlia.backend.config import System
+from mlia.backend.registry import registry
+from mlia.core.common import AdviceCategory
+
+registry.register(
+ "TOSA-Checker",
+ BackendConfiguration(
+ supported_advice=[AdviceCategory.OPERATORS],
+ supported_systems=[System.LINUX_AMD64],
+ backend_type=BackendType.WHEEL,
+ ),
+)