-
Notifications
You must be signed in to change notification settings - Fork 249
Fast GeLU using built-in function #587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
CI failed with the following warning: [2023-02-22T20:58:28.811Z] /home/jenkins/workspace/mposable_kernel_builtin_fastgelu/include/ck/tensor_operation/gpu/element/unary_element_wise_operation.hpp:15:29: warning: identifier 'ocml_native_recip_f32' is reserved because it starts with '' [-Wreserved-identifier] [2023-02-22T20:58:28.811Z] extern "C" device float __ocml_native_recip_f32(float); |
It actually failed because of some function is missing, which I'm trying to fix The "xtern "C" device float __ocml_native_recip_f32(float)" is a warning |
* clean up * fast gelu using builtin function * clean * clean * clean * clean: * clean * fix compilation * clean * clean --------- Co-authored-by: zjing14 <[email protected]>
Without built-in function:

With built-in function (this PR):
