Skip to content

Commit

Permalink
emoving test
Browse files Browse the repository at this point in the history
  • Loading branch information
MaryaSharf committed Jul 23, 2024
1 parent 00959d5 commit 0195c7d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libdevice/fallback-cmath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ float __devicelib_copysignf(float x, float y) {
}

DEVICE_EXTERN_C_INLINE
long int __devicelib_lroundf(float x) { return static_cast<long int>(__spirv_ocl_round(x)); }//__spirv_ocl_lround(x); }
long int __devicelib_lroundf(float x) {
return static_cast<long int>(__spirv_ocl_round(x));
} //__spirv_ocl_lround(x); }

DEVICE_EXTERN_C_INLINE
float __devicelib_cospif(float x) { return __spirv_ocl_cospi(x); }
Expand Down

0 comments on commit 0195c7d

Please sign in to comment.