Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ __SYCL_DEVICE float nearbyint(float x) { return __builtin_nearbyintf(x); }
// Floating-point manipulation functions
using ::frexp;
using ::frexpf;
__SYCL_DEVICE double frexp(float x, int *exp) {
__SYCL_DEVICE float frexp(float x, int *exp) {
return __spirv_ocl_frexp(x, exp);
}
template <typename T> __SYCL_DEVICE __sycl_promote_t<T> frexp(T x, int *exp) {
Expand Down
Loading