Skip to content

Commit 9a2bc10

Browse files
committed
Arm backend: Remove TOSA-0.80+BI from target list in aot_arm_compiler.py
Signed-off-by: Zingo Andersen <[email protected]> Change-Id: I9892256d7de12d7557ddcf518354d2b777d9d8c2
1 parent 2798b6c commit 9a2bc10

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/arm/aot_arm_compiler.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,6 @@ def forward(self, x: torch.Tensor, y: torch.Tensor):
341341
"ethos-u85-1024",
342342
"ethos-u85-2048",
343343
"vgf",
344-
"TOSA-0.80+BI",
345344
"TOSA-1.0+INT",
346345
"TOSA-1.0+FP",
347346
]
@@ -393,7 +392,7 @@ def get_compile_spec(
393392
try:
394393
tosa_spec = TosaSpecification.create_from_string(target)
395394
except:
396-
tosa_spec = TosaSpecification.create_from_string("TOSA-0.80+BI")
395+
tosa_spec = TosaSpecification.create_from_string("TOSA-1.0+INT")
397396
spec_builder = ArmCompileSpecBuilder().tosa_compile_spec(tosa_spec)
398397
elif "ethos-u" in target:
399398
spec_builder = ArmCompileSpecBuilder().ethosu_compile_spec(

0 commit comments

Comments
 (0)