We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68acb46 commit 698003bCopy full SHA for 698003b
libdevice/cmath_wrapper_fp64.cpp
@@ -193,11 +193,11 @@ double rint(double x) { return __nv_rint(x); }
193
#ifdef __AMDGCN__
194
extern "C" SYCL_EXTERNAL double __ocml_nearbyint_f64(double);
195
DEVICE_EXTERN_C_INLINE
196
-double nearbyintf(double x) { return __ocml_nearbyint_f64(x); }
+double nearbyint(double x) { return __ocml_nearbyint_f64(x); }
197
198
extern "C" SYCL_EXTERNAL double __ocml_rint_f64(double);
199
200
-double rintf(double x) { return __ocml_rint_f64(x); }
+double rint(double x) { return __ocml_rint_f64(x); }
201
#endif // __AMDGCN__
202
203
#if defined(_MSC_VER)
0 commit comments