How to compare CUTLASS with CUBLAS #367
-
Hi, I am new to both CUTLASS and CUBLAS. I want to know is there any method provided by cutlass that I can directly compare the performance of cublas and cutlass? Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Sorry for the late response. I am just back from my vacation. You can use cutlass profiler to measure cutlass gemm performance: https://github.com/NVIDIA/cutlass/blob/master/media/docs/profiler.md As to cublas, you can check this https://docs.nvidia.com/cuda/cublas/index.html#example-code We just updated the performance comparison against cublas today: https://github.com/NVIDIA/cutlass#performance. CUTLASS is awesome. |
Beta Was this translation helpful? Give feedback.
-
Actually, the easiest way is to use TVM, since it supports offloading to both cutlass and cublas. |
Beta Was this translation helpful? Give feedback.
-
Thanks for all the advice! |
Beta Was this translation helpful? Give feedback.
Sorry for the late response. I am just back from my vacation.
You can use cutlass profiler to measure cutlass gemm performance: https://github.com/NVIDIA/cutlass/blob/master/media/docs/profiler.md
As to cublas, you can check this https://docs.nvidia.com/cuda/cublas/index.html#example-code
We just updated the performance comparison against cublas today: https://github.com/NVIDIA/cutlass#performance. CUTLASS is awesome.