I am new to this world. So I have question related to compiling a CUDA file.
For a particular reason (not explaining here), I need to follow this path,
1) Transform CUDA source code to sass file
2) edit the sass file
3) run the code
I know how to do 1, nvcc -cubin sourcecode.cu
, this generates sourcecode.cubin
and then do, cuobjdump --dump-sass sourcecode.cubin
. But this one looses the host code. So is there any way I can go to SASS and then somehow run the sass file?