Hi,
according to the CUDA Programming Guide 3.0 inheritance is supported. Before I start implementing I would like to ask whether the following construction works:
struct A
{
unsigned int valueA;
};
struct B : A
{
unsigned int valueB;
};
Can I pass B to a kernel?
Thanks in advance,
Kwyjibo