-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DTYPES : some newly created instances are not well protected #928
Comments
i have this same error
resolve this by adding fp8;bf8 in my dtypes? |
Yes, since we've added a few mixed-type kernels, we cannot decouple the fp16 and fp8 types. |
The issue probably got bigger (in rocm-6.3.0 and develop branches), now there is another fail:
And another fail:
Looks like this part from the README is not correct anymore:
|
Yes, unfortunately, since we've introduced a bunch of mixed-precision operations, splitting the build by data types became too tricky to maintain. The main motivation for it was to split out the INT8 data type, since some DL gemm instances were taking very long to compile due to compiler issues. But those issues had been resolved by now. |
[Reproduce]
hence
-DDTYPES="fp16;fp32;bf16"
, then[Observation]
Since fp8;bf8 was not included in the cmake command, resulting in the instances partially not protected.
Hence
The text was updated successfully, but these errors were encountered: