VLIW on NVidia Cuda
#1
Brick 
Hello! 


Firstly, I want to express my gratitude for open the source code of the program. It was done a great job.

Now I am trying to understand how it is works. And now I am stuck, can you explain me about this code in NVidia Cuda version:
Code:
#ifdef IS_NV
#ifdef sm_10
#define VLIW1
....................
#elif sm_21
#define VLIW2...

And
Code:
class u32x
{
 private:
 public:

 u32 x;
 u32 y;
 u32 z;
 u32 w;
....................
}
And other.

This looks like a Intel SIMD instructions, or VLIW, but I cant find any information about it on NVidia Cuda.

I would be very grateful if you could point me to answer! Thank you!


Messages In This Thread
VLIW on NVidia Cuda - by AlexTeos - 01-12-2016, 03:32 PM
RE: VLIW on NVidia Cuda - by atom - 01-12-2016, 08:21 PM