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
dp2add r0.w, r0.w, r1.x, c10.w becomes dot(r0.w, r1.x) + c10.w as hlsl when it must be written as dot(r0.ww, r1.xx) + c10.w to be recompiled as a dp2add instruction
The text was updated successfully, but these errors were encountered:
dp2add r0.w, r0.w, r1.x, c10.w
becomesdot(r0.w, r1.x) + c10.w
as hlsl when it must be written asdot(r0.ww, r1.xx) + c10.w
to be recompiled as a dp2add instructionThe text was updated successfully, but these errors were encountered: