Skip to content

Commit

Permalink
more fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-goldstein committed Oct 13, 2023
1 parent d780f72 commit 8427e0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hail/python/hail/backend/local_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def register_ir_function(self,
body: Expression):
r = CSERenderer()
code = r(finalize_randomness(body._ir))
jbody = (self._parse_value_ir(code, ref_map=dict(zip(value_parameter_names, value_parameter_types)), ir_map=r.jirs))
jbody = self._parse_value_ir(code, ref_map=dict(zip(value_parameter_names, value_parameter_types)))
self._registered_ir_function_names.add(name)

self.hail_package().expr.ir.functions.IRFunctionRegistry.pyRegisterIR(
Expand Down

0 comments on commit 8427e0d

Please sign in to comment.