From ab616d7432c9ad1bdd13ac61505b941bea4beb40 Mon Sep 17 00:00:00 2001 From: Philip Hall Date: Thu, 19 Dec 2024 14:15:15 +0000 Subject: [PATCH] MLBEDSW-10196: Add missing transpose change for Ethos-U65 The previous Ethos-U55 stripe rewrite commit missed a file to allow Ethos-U65 to function correctly post change. Signed-off-by: Philip Hall Change-Id: Ie3f872dce3451ee2053aa3dec18fc878d1ab80e9 --- ethosu/regor/architecture/ethosu65/ethos_u65.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethosu/regor/architecture/ethosu65/ethos_u65.cpp b/ethosu/regor/architecture/ethosu65/ethos_u65.cpp index 5b7d71c3..877e1ecc 100644 --- a/ethosu/regor/architecture/ethosu65/ethos_u65.cpp +++ b/ethosu/regor/architecture/ethosu65/ethos_u65.cpp @@ -1,5 +1,5 @@ // -// SPDX-FileCopyrightText: Copyright 2021-2023 Arm Limited and/or its affiliates +// SPDX-FileCopyrightText: Copyright 2021-2024 Arm Limited and/or its affiliates // // SPDX-License-Identifier: Apache-2.0 // @@ -46,7 +46,6 @@ static const ArchEthosU55::AcceleratorConfig s_EthosU65Configs[] = { ArchEthosU65::ArchEthosU65() { - _rcsGenerator = std::make_unique(this); } bool ArchEthosU65::ParseConfig(IniReader *reader) @@ -79,6 +78,7 @@ bool ArchEthosU65::ParseConfig(IniReader *reader) } ApplyConfig(cfg); + _rcsGenerator = std::make_unique(this); return true; } -- GitLab