assembler CUDA ?

is Cuda have Assemler ?

No the CUDA programming language is very similar to the C programming language, but it is possible to program in CUDA assembler, also known as PTX code.

Where is it ?
How can i join it with assembler x64 ? Were any trials ?

Hi RBator,

PTX assembly runs on GPU end and x64 assembly runs on CPU, they can not be mixed up.

Best regards!

Hi

Thank You .

if i make a simply kernel can i use ptx and assembler in this same project ?
i think about function extern"C" , eg.
extern “C” long long Asm(); // for Asmx64
extern “C” long long PTX(); // for PTX
i want use this into eg. Visual C++ .