You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the following matrix multiplication (which I ran on a V100), when IS_MASKED=True, the error Incompatible parent encoding appear which is not the case when IS_MASKED=False. Any idea what caused this problem ?
Seems like commenting out this line if IS_MASKED: qk = tl.where(n_range_offs[None, :] < seq_len, qk, float("-inf")), fixed the issue (I was multiplying with -inf, that is why it doesnt work)
Given the following matrix multiplication (which I ran on a V100), when
IS_MASKED=True
, the errorIncompatible parent encoding
appear which is not the case whenIS_MASKED=False
. Any idea what caused this problem ?The text was updated successfully, but these errors were encountered: