File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 14
14
# https://www.nvidia.com/en-us/data-center/h100/
15
15
#
16
16
# NOTE: These values are valid for fp16 and bf16 only
17
- PEAK_PERFORMANCE = {
18
- "A100" : 312e12 ,
19
- "H100" : 989e12 ,
20
- }
17
+ PEAK_PERFORMANCE = {"A100" : 312e12 , "H100" : 989e12 , "GH200" : 989e12 }
21
18
22
19
23
20
class MFUCalculatorABC :
@@ -128,6 +125,10 @@ def _get_theoretical_gpu_peak_performance(wrapped_model: FSDPX, world_size: int)
128
125
single_gpu_peak_performance = MFUCalculatorABC ._get_theoretical_gpu_peak_performance_single (
129
126
precision , "H100"
130
127
)
128
+ elif device_name .startswith ("NVIDIA GH200" ):
129
+ single_gpu_peak_performance = MFUCalculatorABC ._get_theoretical_gpu_peak_performance_single (
130
+ precision , "GH200"
131
+ )
131
132
else :
132
133
warnings .warn (f"Could not get theoretical GPU peak performance for unknown device = { device_name } ." )
133
134
return None
You can’t perform that action at this time.
0 commit comments