• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// TODO: Enable half precision when the sw routine is implemented
2#if __CLC_FPSIZE > 16
3_CLC_OVERLOAD _CLC_DEF __CLC_GENTYPE remquo(__CLC_GENTYPE x, __CLC_GENTYPE y, __CLC_ADDRESS_SPACE __CLC_INTN *q) {
4  __CLC_INTN local_q;
5  __CLC_GENTYPE ret = __clc_remquo(x, y, &local_q);
6  *q = local_q;
7  return ret;
8}
9#endif
10