需要编译一个 *.cubin 文件。
在编译时使用--ptxas-option=v参数,显示register使用的个数是36。于是,在编译时使用maxrregcount=32。从而,register的使用个数是32,使用了“8 bytes stack frame, 12 bytes spill stores, 28 bytes spill loads”
nvcc -cubin -m64 -arch sm_35 *.cu --use_fast_math --maxrregcount=32 --ptxas-options=-v -O3 -o *.cubin
但是,经过多次测试,发现浮点计算结果不一样(int计算结果没有测试)。
因此,发现了这个bug:maxrregcount可能导致最终结果不同。
搜了一下,其他人也遇到了这个问题。有一个解释如下:
“Operation order may change with register optimization. Since fp arithmetic is not associative due to finite precision, this may affect the result.”
时间: 2024-10-29 19:08:23