Skip to content

Commit 52d0903

Browse files
committed
automation fixes
Signed-off-by: Rob Elliott <Robert.Elliott@arm.com> Change-Id: I8f12a57d6781266c6a3cbd43b1d5310d7c4ba4e2
1 parent a0647fc commit 52d0903

3 files changed

Lines changed: 4 additions & 10 deletions

File tree

backends/arm/ethosu/partitioner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ def __init__(
3333
)
3434
self.additional_checks = additional_checks
3535
self.tosa_spec = compile_spec.tosa_spec
36+
self._custom_partition_ops: set[torch._ops.OpOverload] = set()

backends/arm/public_api_manifests/api_manifest_running.toml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,12 @@ signature = "EthosUCompileSpec(target: str, system_config: str | None = None, me
2222

2323
[python.EthosUCompileSpec.DebugMode]
2424
kind = "enum"
25-
signature = "EthosUCompileSpec.DebugMode(*values)"
25+
signature = "EthosUCompileSpec.DebugMode(value, names=None, *, module=None, qualname=None, type=None, start=1)"
2626

2727
[python.EthosUCompileSpec.__eq__]
2828
kind = "function"
2929
signature = "EthosUCompileSpec.__eq__(self, other)"
3030

31-
[python.EthosUCompileSpec.__replace__]
32-
kind = "function"
33-
signature = "EthosUCompileSpec.__replace__(self, /, **changes)"
34-
3531
[python.EthosUCompileSpec.__repr__]
3632
kind = "function"
3733
signature = "EthosUCompileSpec.__repr__(self)"
@@ -110,16 +106,12 @@ signature = "VgfCompileSpec(tosa_spec: executorch.backends.arm.tosa.specificatio
110106

111107
[python.VgfCompileSpec.DebugMode]
112108
kind = "enum"
113-
signature = "VgfCompileSpec.DebugMode(*values)"
109+
signature = "VgfCompileSpec.DebugMode(value, names=None, *, module=None, qualname=None, type=None, start=1)"
114110

115111
[python.VgfCompileSpec.__eq__]
116112
kind = "function"
117113
signature = "VgfCompileSpec.__eq__(self, other)"
118114

119-
[python.VgfCompileSpec.__replace__]
120-
kind = "function"
121-
signature = "VgfCompileSpec.__replace__(self, /, **changes)"
122-
123115
[python.VgfCompileSpec.__repr__]
124116
kind = "function"
125117
signature = "VgfCompileSpec.__repr__(self)"

backends/arm/vgf/partitioner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ def __init__(
3333
)
3434
self.additional_checks = additional_checks
3535
self.tosa_spec = compile_spec.tosa_spec
36+
self._custom_partition_ops: set[torch._ops.OpOverload] = set()

0 commit comments

Comments
 (0)