From d08513a72e7fbf0626c3d69b9c4cc7056b3da4ae Mon Sep 17 00:00:00 2001 From: Nathan Bailey Date: Tue, 16 Jan 2024 16:39:06 +0000 Subject: feat: Integrate Vela's per-layer performance estimates Resolves: MLIA-1055, MLIA-1056, MLIA-1057 Signed-off-by: Nathan Bailey Change-Id: Id573cec94e4a69117051dcd5175f383c0955d890 --- src/mlia/core/workflow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mlia/core') diff --git a/src/mlia/core/workflow.py b/src/mlia/core/workflow.py index 9f8ac83..c645857 100644 --- a/src/mlia/core/workflow.py +++ b/src/mlia/core/workflow.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Copyright 2022-2023, Arm Limited and/or its affiliates. +# SPDX-FileCopyrightText: Copyright 2022-2024, Arm Limited and/or its affiliates. # SPDX-License-Identifier: Apache-2.0 """Module for executors. @@ -114,6 +114,7 @@ class DefaultWorkflowExecutor(WorkflowExecutor): self.before_start() collected_data = self.collect_data() + analyzed_data = self.analyze_data(collected_data) self.produce_advice(analyzed_data) -- cgit v1.2.1