From 758e29c5529a03b9b371ebec5d9df1e31e79dcd4 Mon Sep 17 00:00:00 2001 From: Eli Amesefe Date: Fri, 2 May 2025 16:41:29 -0700 Subject: [PATCH] Move default Vela/Regor configurations to Sram_Only (#10279) Summary: Pull Request resolved: https://github.com/pytorch/executorch/pull/10279 Move default Vela/Regor configurations to Sram_Only Differential Revision: D73212758 --- backends/arm/test/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backends/arm/test/common.py b/backends/arm/test/common.py index 57606e51f47..90c18822e40 100644 --- a/backends/arm/test/common.py +++ b/backends/arm/test/common.py @@ -93,7 +93,7 @@ def get_tosa_compile_spec_unbuilt( def get_u55_compile_spec( macs: int = 128, system_config: str = "Ethos_U55_High_End_Embedded", - memory_mode: str = "Shared_Sram", + memory_mode: str = "Sram_Only", extra_flags: str = "--debug-force-regor --output-format=raw", custom_path: Optional[str] = None, ) -> list[CompileSpec]: @@ -112,7 +112,7 @@ def get_u55_compile_spec( def get_u85_compile_spec( macs: int = 128, system_config="Ethos_U85_SYS_DRAM_Mid", - memory_mode="Shared_Sram", + memory_mode="Sram_Only", extra_flags="--output-format=raw", custom_path=None, ) -> list[CompileSpec]: