Originally posted by log0
View Post
Note that the GPU shader ISA doesn't actually go in the command buffers -- the code that runs on the shader core goes in a separate area of memory, then you queue commands to the GPU which (a) tell the GPU where to find the program code and (b) tell the GPU to dispatch that program on each element in an N-dimensional range of data.
Comment