Usable assembly language for GPUs: a success story
Department of Computer Science, University of Illinois at Chicago, 851 S. Morgan Street, Chicago, IL 60607-7053, USA
Workshop record of Special-Purpose Hardware for Attacking Cryptographic Systems (SHARCS 2012), 2012
@inproceedings{bernstein2012usable,
author={Daniel J. Bernstein and Hsieh-Chung Chen and Chen-Mou Cheng and Tanja Lange and Ruben Niederhagen and Peter Schwabe and Bo-Yin Yang},
title={Usable assembly language for GPUs: a success story},
booktitle={Workshop records of Special-Purpose Hardware for Attacking Cryptographic Systems — {SHARCS 2012} (to appear)},
year={2012},
note={url{http://cryptojedi.org/papers/#gpuasm}}
}
The NVIDIA compilers nvcc and ptxas leave the programmer with only very limited control over register allocation, register spills, instruction selection, and instruction scheduling. In theory a programmer can gain control by writing an entire kernel in van der Laan’s cudasm assembly language, but this requires tedious, error-prone tracking of register assignments. This paper introduces a higher-level assembly language, qhasm-cudasm, that allows much faster programming while providing the same amount of control over the GPU. This language has been used successfully to build a 90000-machine-instruction kernel for a computation described in detail in the paper, the largest public cryptanalytic project in history. The best GTX 295 speed that has been obtained for this computation with nvcc and ptxas is 25 million iterations per second; the best GTX 295 speed that has been obtained with qhasm-cudasm is 63 million iterations per second.
March 18, 2012 by hgpu