5 ms·
Would the AI “GW-scale” clusters be able to run the Top500 benchmarks meaningfully? And what might be the outcome?
by lokimedes 3mo ago
Would the AI “GW-scale” clusters be able to run the Top500 benchmarks meaningfully? And what might be the outcome?
- wmf 3mo agoYes, they should score well on Linpack as long as they use Ozaki emulation.
- adrian_b 3mo agoNo, that is too slow. Most claims about the cost of emulating FP64 on GPUs are wrong, because they assume that only the significand of floating-point numbers must be extended. In reality it is even more important to extend the exponent, because with the exponent of FP32 overflows would be much too frequent in scientific/technical computations to accomplish anything. The minimum FP64 emulation on FP32-capable GPUs requires 3 numbers per emulated FP64, which may be 3 FP32 numbers, or the exponent may be an Int32, if that works better on the target GPU. An emulated FP64 operation is likely to be at least 20 times slower than a FP32 operation. That is much faster than the 1:64 ratio provided in hardware by an NVIDIA GPU, but even on the fastest FP32 GPUs it is too slow to compete with CPUs, in a professional setting. FP64 emulation on a GPU can be useful only in a home computer, which may have a rather weak CPU and increasing the FP64 throughput using the GPU can be done at no additional cost, so it can be worthwhile.
- mrlongroots 3mo ago> And what might be the outcome? DoE compute budgets are ~10B USD across labs. AI training is a trillion-dollar workload. Different league.
- adrian_b 3mo agoNo. The AI oriented GPUs or TPUs have either weak FP64 throughput or they may not support FP64 at all. They can compete neither with CPUs nor with GPUs that have good FP64 support, like the AMD CDNA datacenter GPUs, which occupy all the top places among American supercomputers. NVIDIA has stopped improving the FP64 throughput even in their "datacenter" GPUs, abandoning this nowadays smaller market to AMD. The AMD CDNA GPUs can be used for both HPC and AI, so only an AI cluster based on them could have dual use, but most who want AI choose NVIDIA.