Skip to content

Commit

Permalink
Fix missing memory_efficient params
Browse files Browse the repository at this point in the history
  • Loading branch information
dushuaishuai committed Dec 13, 2024
1 parent f16eafb commit c34dbdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workload_generator/mocked_model/AiobMegatron.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def __init__(self, args=None):
@cuda_timing_decorator
def _apply(self, hidden_states):
output_lay = FastLayerNormFN.apply(
hidden_states, self.lay_weight, self.bias, 1e-05
hidden_states, self.lay_weight, self.bias, 1e-05, 1
)

return output_lay
Expand Down

0 comments on commit c34dbdd

Please sign in to comment.