Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Nov 22, 2024
1 parent 9443911 commit 0eb1db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/enzyme_ad/jax/primitives.py
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ def _enzyme_primal_lowering(
placeholderop.erase()
else:
callop = func.CallOp(fn, list(in_args))
callop.attributes.attrs["noinline"] = jax_mlir.ir.StringAttr.get("")
callop.attributes["noinline"] = jax_mlir.ir.StringAttr.get("")
print(callop)
results = callop.results
attrs = fn.attributes
Expand Down Expand Up @@ -1761,7 +1761,7 @@ def enzyme_jax_ir(argv=(), pipeline_options=DefaultJaXPipeline, jit_options={},

def op_like(dialect : str, op : str):
jit_options2 = {"op_like": (dialect, op)}
inner_jit=False
inner_jit=True
argv=()
pipeline_options=JaXPipeline("")
return common_irgen(argv, pipeline_options, jit_options2, inner_jit)

0 comments on commit 0eb1db3

Please sign in to comment.