Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions backends/arm/test/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ def build_ethosu_runtime(
pte_file: str,
target: str,
system_config: str,
memory_mode: str,
extra_flags: str,
elf_build_path: str,
):
Expand All @@ -195,6 +196,7 @@ def build_ethosu_runtime(
f"--target={target}",
"--build_type=Release",
f"--system_config={system_config}",
f"--memory_mode={memory_mode}",
extra_build_flag,
f"--output={elf_build_path}",
]
Expand Down Expand Up @@ -256,6 +258,7 @@ def run_elf_with_fvp(script_path: str, elf_file: str, target: str):
pte_file,
args.target,
args.system_config,
args.memory_mode,
args.extra_flags,
elf_build_path,
)
Expand Down
Loading