Skip to content

Commit 843e600

Browse files
committed
Fix mypy linter error
1 parent cc7d899 commit 843e600

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/arm/_passes/to_tosa_memory_format_pass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def insert_tosa_transposes(self, graph_module: torch.fx.GraphModule):
260260
output_dim_orders = output_node.meta.get("original_dim_orders")
261261
if output_dim_orders is None:
262262
raise RuntimeError(
263-
f"{AnnotateDecomposedMatmulPass.__name__} is required to run at the beginning of the pass pipeline when using {self.__name__}."
263+
f"{AnnotateDecomposedMatmulPass.__name__} is required to run at the beginning of the pass pipeline when using {ToTosaMemoryFormatPass.__name__}."
264264
)
265265

266266
for output_node_input, output_dim_order in zip(outputs, output_dim_orders): # type: ignore[arg-type]

0 commit comments

Comments
 (0)