Hi,
i always get errors using the half2 arithmetic functions.
For example this code snipplet pasted in device code:
__half2 one,two,three;
one = __hadd2(two, three);
leads to this error:
error: identifier “__hadd2” is undefined
The half arithmetic seems to work, this code:
__half one,two,three;
one = __hadd(two, three);
does not produce any error.
Can ypu please help in getting the half2 arithmetic working.
Thank and best regards