コンピューティング機能 1.2 を持つ GeForce 310 GPU のnvcc
オプションを使用して CUDA プログラムをコンパイルしています。-arch=20 -code=20
プログラムは次のように正常に動作するようです。
wangli@wangli-desktop:~/wangliC2050/1D-EncodeV6.1$ make
nvcc -O --ptxas-options=-v 1D-EncodeV6.1.cu -o 1D-EncodeV6.1 -I../../NVIDIA_GPU_Computing_SDK/C/common/inc -I../../NVIDIA_GPU_Computing_SDK/shared/inc -arch=compute_20 -code=sm_20
ptxas info : Compiling entry function '_Z6EncodePhPjS0_S_S_' for 'sm_20'
ptxas info : Function properties for _Z6EncodePhPjS0_S_S_
0 bytes stack frame, 0 bytes spill stores, 0 bytes spill loads
ptxas info : Used 14 registers, 52 bytes cmem[0]
wangli@wangli-desktop:~/wangliC2050/1D-EncodeV6.1$ ./1D-EncodeV6.1
########################### Encoding start (loopCount=10)#######################
#p n size averageTime(s) averageThroughput(MB/s) errorRate(0~1)
#================= Encode on GPU v6.1 ===============
4 4 4 0.000294 0.051837 100.000000
#################### Encoding stop #########################
だから、私は疑問に思います:
- このプログラムは、カードの計算能力 1.2 と一致しない
nvcc
オプションを使用して GeForce 310 で実行できるのはなぜですか?-arch=compute_20 -code=sm_20
-arch
オプションの値がオプションの値と異なる場合はどうなり-code
ますか?
ありがとう。