Skip to content
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

Microbenchmark: gemm-flops - Add arch support for 10.0 #680

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ def __init__(self, name, parameters=''):

self._bin_name = 'cutlass_profiler'

# TODO - To support more architecutres, currently only support compute capability = 7.0, 7.5, 8.0, 8.6
# TODO - To support more architectures,
# currently only support compute capability = 7.0, 7.5, 8.0, 8.6, 8.9, 9.0, 10.0
self.__kernel_map = {
7.0: {
'fp64': 'cutlass_simt_dgemm_128x128_8x2_*',
Expand All @@ -42,6 +43,16 @@ def __init__(self, name, parameters=''):
'fp16_tc': 'cutlass_tensorop_h16816gemm_256x128_32x3_*',
'int8_tc': 'cutlass_tensorop_s8_i16832gemm_s8_256x128_64x3_*',
'int4_tc': 'cutlass_tensorop_s4_i16864gemm_s4_256x128_128x3_*',
},
10.0: {
'fp64': 'cutlass_simt_dgemm_128x128_8x2_*',
'fp32': 'cutlass_simt_sgemm_128x128_8x2_*',
'fp16': 'cutlass_simt_hgemm_256x128_8x2_*',
'fp64_tc': 'cutlass_tensorop_d884gemm_128x128_16x3_*',
'tf32_tc': 'cutlass_tensorop_tf32_s1688gemm_tf32_256x128_16x3_*',
'bf16_tc': 'cutlass_tensorop_bf16_s16816gemm_bf16_256x128_32x3_*',
'fp16_tc': 'cutlass_tensorop_h16816gemm_256x128_32x3_*',
'int8_tc': 'cutlass_tensorop_s8_i16832gemm_s8_256x128_64x3_*',
}
}
# Skip FP64 for RTX Turing/Ampere and Tesla T4/GA10x due to very limited FP64 TFLOP rate
Expand Down
Loading