Skip to content

Commit

Permalink
[Mosaic_GPU] Fix a typo that caused a regression
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 647347033
  • Loading branch information
cperivol authored and jax authors committed Jun 27, 2024
1 parent 9ae1c56 commit 61185a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jax/experimental/mosaic/gpu/wgmma.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, *, _value: mgpu.FragmentedArray, _sync: bool = True):
raise ValueError("Only WGMMA layouts supported in WGMMAAccumulator")
self.value = _value
if _sync:
self._value = wgmma_fence(_value)
self.value = wgmma_fence(_value)

@classmethod
def zero(cls, m, n, dtype=None):
Expand Down

0 comments on commit 61185a2

Please sign in to comment.