aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/devices/tosa/operators.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlia/devices/tosa/operators.py')
-rw-r--r--src/mlia/devices/tosa/operators.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mlia/devices/tosa/operators.py b/src/mlia/devices/tosa/operators.py
index 6cfb87f..03f6fb8 100644
--- a/src/mlia/devices/tosa/operators.py
+++ b/src/mlia/devices/tosa/operators.py
@@ -68,3 +68,11 @@ def get_tosa_checker(tflite_model_path: PathOrFileLike) -> TOSAChecker | None:
checker = tc.TOSAChecker(str(tflite_model_path))
return cast(TOSAChecker, checker)
+
+
+def report() -> None:
+ """Generate supported operators report."""
+ raise Exception(
+ "Generating a supported operators report is not "
+ "currently supported with TOSA target profile."
+ )