Skip to content

Commit 0fb2ccf

Browse files
mansnilsfreddan80
authored andcommitted
Correct TOSA version to 0.80
Change-Id: Ib2c5b4836b170c61a18164a471cf5bf1020c9421
1 parent 1197c73 commit 0fb2ccf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

backends/arm/operators/op_avg_pool2d.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AvgPool2dVisitor_0_80_BI(NodeVisitor):
2525
target = "aten.avg_pool2d.default"
2626

2727
tosa_specs = [
28-
TosaSpecification.create_from_string("TOSA-0.80.0+BI"),
28+
TosaSpecification.create_from_string("TOSA-0.80+BI"),
2929
]
3030

3131
def __init__(self, *args):
@@ -96,7 +96,7 @@ class AvgPool2dVisitor_0_80_MI(AvgPool2dVisitor_0_80_BI):
9696
# inheriting 'target' from BI class
9797

9898
tosa_specs = [
99-
TosaSpecification.create_from_string("TOSA-0.80.0+MI"),
99+
TosaSpecification.create_from_string("TOSA-0.80+MI"),
100100
]
101101

102102
def define_node(

backends/arm/operators/op_batch_norm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class BatchNormVisitor(NodeVisitor):
2323
target = "aten._native_batch_norm_legit_no_training.default"
2424

2525
tosa_specs = [
26-
TosaSpecification.create_from_string("TOSA-0.80.0+MI"),
26+
TosaSpecification.create_from_string("TOSA-0.80+MI"),
2727
]
2828

2929
def __init__(self, *args):

backends/arm/operators/op_div.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DivVisitor(NodeVisitor):
2424

2525
# Only supported for MI
2626
tosa_specs = [
27-
TosaSpecification.create_from_string("TOSA-0.80.0+MI"),
27+
TosaSpecification.create_from_string("TOSA-0.80+MI"),
2828
]
2929

3030
def __init__(self, *args):

0 commit comments

Comments
 (0)