Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
stellaraccident committed Feb 5, 2024
1 parent 2229ec3 commit 0d4ad20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/shark_turbine/aot/support/procedural/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def track(self, module_builder: ModuleBuilder, export_namespace: str) -> Any:
elif isinstance(value, AbstractTensor):
global_type = value.get_ir_type(module_builder)
(
actual_symbol_name,
actual_symbol_name,
global_op,
) = module_builder.create_typed_global(
f"_{fq_name}",
Expand All @@ -164,7 +164,7 @@ def track(self, module_builder: ModuleBuilder, export_namespace: str) -> Any:
elif isinstance(value, AbstractScalar):
global_type = value.get_ir_type(module_builder)
(
actual_symbol_name,
actual_symbol_name,
global_op,
) = module_builder.create_typed_global(
f"_{fq_name}",
Expand Down

0 comments on commit 0d4ad20

Please sign in to comment.