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
Why use fp32 accumulation in a fp64 operator? I guess we should not use fp32 for the default value of accumulation type (what if the dtype is interger?)
fp32 accumulator further leads to the call to fmin(float, double), which only exists as a host function, causing a compile error.
The text was updated successfully, but these errors were encountered:
See the snippet below:
Several problems here:
fmin(float, double)
, which only exists as a host function, causing a compile error.The text was updated successfully, but these errors were encountered: