-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[BUG] Computing result error in cutlass gemm with specfied shape #1829
Comments
UPDATE: |
Maybe such an error is an accuracy issue? |
After further debugging, we found that this error was caused by the difference between the calculation result and the tensor_ref_d in some of the values. We've added the following code:
and got the following result: |
This issue has been labeled |
This issue has been labeled |
when I use cutlass template to write my own gemm kernel, I meet a Internal error, even I follow the settings provided by cutlass profiler.
The full code is as below:
The above setting is provided by cutlass profiler:
I compiled it with
nvcc -std=c++17 -arch=sm_80 -I/xxx/third_party/cutlass/include -I/xxx/third_party/cutlass/tools/util/include -I/xxx/third_party/cutlass/tools/library/include -I/xxx/third_party/cutlass/examples/common -lcublas ./cutlass_gemm.cu --expt-relaxed-constexpr -o cutlass_gemm_example
. I use cuda12.6 and RTX 6000 ada GPU.I'd like to know if this is an issue with the way I'm using it?
The text was updated successfully, but these errors were encountered: