aboutsummaryrefslogtreecommitdiff
path: root/src/mlia/target/cortex_a/events.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlia/target/cortex_a/events.py')
-rw-r--r--src/mlia/target/cortex_a/events.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mlia/target/cortex_a/events.py b/src/mlia/target/cortex_a/events.py
new file mode 100644
index 0000000..a172d0d
--- /dev/null
+++ b/src/mlia/target/cortex_a/events.py
@@ -0,0 +1,24 @@
+# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
+# SPDX-License-Identifier: Apache-2.0
+"""Cortex-A MLIA module events."""
+from dataclasses import dataclass
+from pathlib import Path
+
+from mlia.core.events import Event
+from mlia.core.events import EventDispatcher
+from mlia.target.cortex_a.config import CortexAConfiguration
+
+
+@dataclass
+class CortexAAdvisorStartedEvent(Event):
+ """Event with Cortex-A advisor parameters."""
+
+ model: Path
+ device: CortexAConfiguration
+
+
+class CortexAAdvisorEventHandler(EventDispatcher):
+ """Event handler for the Cortex-A inference advisor."""
+
+ def on_cortex_a_advisor_started(self, event: CortexAAdvisorStartedEvent) -> None:
+ """Handle CortexAAdvisorStarted event."""