Parallel Thread Execution (PTX or NVPTX[1]) is a low-level parallel thread execution virtual machine and instruction set architecture used in Nvidia's Compute Unified Device Architecture (CUDA) programming environment. The Nvidia CUDA Compiler (NVCC) translates code written in CUDA, a C++-like language, into PTX instructions (an assembly language represented as American Standard Code for Information Interchange (ASCII) text), and the graphics driver contains a compiler which translates PTX instructions into executable binary code,[2] which can run on the processing cores of Nvidia graphics processing units (GPUs). The GNU Compiler Collection also has basic ability to generate PTX in the context of OpenMP offloading.[3] Inline PTX assembly can be used in CUDA.[4]
PTX uses an arbitrarily large processor register set; the output from the compiler is almost pure static single-assignment form, with consecutive lines generally referring to consecutive registers. Programs start with declarations of the form
It is a three-argument assembly language, and almost all instructions explicitly list the data type (in sign and width) on which they operate. Register names are preceded with a % character and constants are literal, e.g.:
There are predicate registers, but compiled code in shader model 1.0 uses these only in conjunction with branch commands; the conditional branch is
The setp.cc.type
instruction sets a predicate register to the result of comparing two registers of appropriate type, there is also a set
instruction, where %r101
to 0xffffffff
if the 64-bit register %rd12
is less than or equal to the 64-bit register %rd28
. Otherwise %r101
is set to 0x00000000
.
There are a few predefined identifiers that denote pseudoregisters. Among others, %tid, %ntid, %ctaid
, and %nctaid
contain, respectively, thread indices, block dimensions, block indices, and grid dimensions.[5]
Load (ld
) and store (st
) commands refer to one of several distinct state spaces (memory banks), e.g. ld.param
.There are eight state spaces:[5]
.reg
: registers.sreg
: special, read-only, platform-specific registers
.const
: shared, read-only memory
.global
: global memory, shared by all threads
.local
: local memory, private to each thread
.param
: parameters passed to the kernel
.shared
: memory shared between threads in a block
.tex
: global texture memory (deprecated)
Shared memory is declared in the PTX file via lines at the start of the form:
Writing kernels in PTX requires explicitly registering PTX modules via the CUDA Driver API, typically more cumbersome than using the CUDA Runtime API and Nvidia's CUDA compiler, nvcc. The GPU Ocelot project provided an API to register PTX modules alongside CUDA Runtime API kernel invocations, though the GPU Ocelot is no longer actively maintained.[6]