Skip to content

Commit 22a75be

Browse files
zingofreddan80
authored andcommitted
Arm backend : Back Ethos-U Vela compiler to working version
Latest vela version 4.1.0 unfortunately generates output size/shapes not matching the expected output. Moving the Vela version back to a working version until this is investigated/fixed. Signed-off-by: Zingo Andersen <[email protected]> Change-Id: I8ab4766b9a0de22779cdf8c9932d78eb6e6e87e5
1 parent 4f47cc9 commit 22a75be

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

backends/arm/test/ops/test_depthwise_conv.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,6 @@ def test_dw_conv_tosa_BI(self, test_name: str, model: torch.nn.Module):
260260
) # Works
261261

262262
@parameterized.expand(testsuite_conv2d, skip_on_empty=True)
263-
@unittest.expectedFailure
264263
def test_dw_conv2d_u55_BI(
265264
self, test_name: str, model: torch.nn.Module, set_quantize_io: bool = False
266265
):

examples/arm/aot_arm_compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def get_compile_spec(
273273
target,
274274
system_config="Ethos_U55_High_End_Embedded",
275275
memory_mode="Shared_Sram",
276-
extra_flags="--debug-force-regor --output-format=raw --verbose-operators --verbose-cycle-estimate",
276+
extra_flags="--debug-force-regor --output-format=raw",
277277
)
278278
.set_permute_memory_format(True)
279279
.set_quantize_io(True)
@@ -286,7 +286,7 @@ def get_compile_spec(
286286
target,
287287
system_config="Ethos_U85_SYS_DRAM_Mid",
288288
memory_mode="Shared_Sram",
289-
extra_flags="--output-format=raw --verbose-operators --verbose-cycle-estimate",
289+
extra_flags="--output-format=raw",
290290
)
291291
.set_permute_memory_format(True)
292292
.set_quantize_io(True)

examples/arm/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ tosa_reference_model_rev="f9ea4ab7da19318fe36b1c34d68a3e40fd6e56c5"
9292

9393
# vela
9494
vela_repo_url="https://review.mlplatform.org/ml/ethos-u/ethos-u-vela"
95-
vela_rev="a08fc18780827b5fefc814dd0162ee6317ce0ae7"
95+
vela_rev="49d0ae16bafd1db0fcb6790f12b7f249acf1974d"
9696

9797
########
9898
### Mandatory user args

0 commit comments

Comments
 (0)