Skip to content

Commit

Permalink
remove static
Browse files Browse the repository at this point in the history
  • Loading branch information
morgandu committed May 18, 2024
1 parent 2ca0d24 commit af8562f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MaxText/inference_microbenchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def ar_benchmark_loop(config, engine, params, decode_state, iters, profile_name)


def ar_lowering(engine, params, decode_state):
lowered_generate = engine.generate.lower(params, decode_state)
lowered_generate = engine.generate.lower(engine, params, decode_state)
compiled_generate = lowered_generate.compile()
return compiled_generate

Expand Down

0 comments on commit af8562f

Please sign in to comment.