-
Notifications
You must be signed in to change notification settings - Fork 92
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
#5424: Clean up Sfpu Sign kernel api #16809
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,10 @@ inline void llk_math_eltwise_unary_sfpu_sign_init() { | |
} | ||
|
||
template <bool APPROXIMATE> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a comment here explaining the |
||
inline void llk_math_eltwise_unary_sfpu_sign(uint dst_index, int vector_mode = (int)VectorMode::RC) { | ||
llk_math_eltwise_unary_sfpu_params<APPROXIMATE>(ckernel::sfpu::calculate_sign<APPROXIMATE>, dst_index, vector_mode); | ||
inline void llk_math_eltwise_unary_sfpu_sign( | ||
uint dst_index, int vector_mode = (int)VectorMode::RC, uint exponent_size_8 = 1) { | ||
llk_math_eltwise_unary_sfpu_params<APPROXIMATE>( | ||
ckernel::sfpu::calculate_sign<APPROXIMATE>, dst_index, vector_mode, exponent_size_8); | ||
} | ||
|
||
} // namespace ckernel |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,10 @@ inline void llk_math_eltwise_unary_sfpu_sign_init() { | |
} | ||
|
||
template <bool APPROXIMATE> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same thing here, a small comment about |
||
inline void llk_math_eltwise_unary_sfpu_sign(uint dst_index, int vector_mode = (int)VectorMode::RC) { | ||
llk_math_eltwise_unary_sfpu_params<APPROXIMATE>(ckernel::sfpu::calculate_sign<APPROXIMATE>, dst_index, vector_mode); | ||
inline void llk_math_eltwise_unary_sfpu_sign( | ||
uint dst_index, int vector_mode = (int)VectorMode::RC, uint exponent_size_8 = 1) { | ||
llk_math_eltwise_unary_sfpu_params<APPROXIMATE>( | ||
ckernel::sfpu::calculate_sign<APPROXIMATE>, dst_index, vector_mode, exponent_size_8); | ||
} | ||
|
||
} // namespace ckernel |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,10 @@ inline void llk_math_eltwise_unary_sfpu_sign_init() { | |
} | ||
|
||
template <bool APPROXIMATE> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same thing here |
||
inline void llk_math_eltwise_unary_sfpu_sign(uint dst_index, int vector_mode = (int)VectorMode::RC) { | ||
llk_math_eltwise_unary_sfpu_params<APPROXIMATE>(ckernel::sfpu::calculate_sign<APPROXIMATE>, dst_index, vector_mode); | ||
inline void llk_math_eltwise_unary_sfpu_sign( | ||
uint dst_index, int vector_mode = (int)VectorMode::RC, uint exponent_size_8 = 1) { | ||
llk_math_eltwise_unary_sfpu_params<APPROXIMATE>( | ||
ckernel::sfpu::calculate_sign<APPROXIMATE>, dst_index, vector_mode, exponent_size_8); | ||
} | ||
|
||
} // namespace ckernel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you checked what it does when you give it -0.0f ?