Hi,
Are there intrinsics for RCPSP and RSQRSP somewhere? I just want something like this. (Apparently, the following code doesn't compile.)
float FastRSQRCP(float val)
{
register float out;
asm("RSQRSP val, out");
return out;
}
float FastRCP(float val)
{
register float out;
asm("RCPSP val, out");
return out;
}
Thanks