FP64 指 64 位浮点数(double-precision floating point),通常符合 IEEE 754 标准,用于需要更高数值精度与更大动态范围的计算(如科学计算、工程仿真、金融建模等)。在 GPU/CPU 性能讨论中,FP64 也常用来表示“双精度计算吞吐能力”。
/ˌɛf piː ˌsɪksti ˈfɔːr/
FP64 is used when you need more numerical precision than FP32.
当你需要比 FP32 更高的数值精度时,就会使用 FP64。
Although the model trains faster in FP16/FP32, the final evaluation uses FP64 to reduce accumulated rounding error.
尽管模型在 FP16/FP32 下训练更快,但最终评估会使用 FP64 以减少累积的舍入误差。
FP64 是缩写:FP 来自 floating point(浮点),64 表示 64 位数据宽度;在多数语境下等同于 double precision(双精度)。这一命名方式常见于计算机体系结构与数值计算领域,用于区分 FP16、FP32、FP64 等不同精度格式。