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__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mlia/backend/tosa_checker/__init__.py b/src/mlia/backend/tosa_checker/__init__.py
index d2364cb..08e44d4 100644
--- a/src/mlia/backend/tosa_checker/__init__.py
+++ b/src/mlia/backend/tosa_checker/__init__.py
@@ -5,6 +5,7 @@ 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.backend.tosa_checker.install import get_tosa_backend_installation
from mlia.core.common import AdviceCategory
registry.register(
@@ -13,6 +14,7 @@ registry.register(
supported_advice=[AdviceCategory.COMPATIBILITY],
supported_systems=[System.LINUX_AMD64],
backend_type=BackendType.WHEEL,
+ installation=get_tosa_backend_installation(),
),
pretty_name="TOSA Checker",
)