-
Notifications
You must be signed in to change notification settings - Fork 81
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
[ trivial ] Fix typo & misspelled function param #2838
Conversation
- intY -> incY (incremental index of Y) - __scopy_kernel() only works for interested SIMD register width **Self evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: skykongkong8 <[email protected]>
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.
LGTM
@@ -265,23 +265,23 @@ void scopy(const unsigned int N, const void *X, const int incX, void *Y, | |||
* @param[in] Y float * for Vector Y | |||
*/ | |||
void scopy(const unsigned int N, const float *X, const int incX, float *Y, | |||
const int intY); | |||
const int incY); | |||
/** | |||
* @brief copy function : Y = X | |||
* @param[in] N number of elements in X | |||
* @param[in] X uint8_t * for Vector X | |||
* @param[in] Y uint8_t * for Vector Y | |||
*/ |
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.
What about adding explanation on incX
and incY
?
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.
LGTM!
- With certain version of compiler, skipping including header file may cause build failure **Self evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: skykongkong8 <[email protected]>
LGTM |
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.
LGTM
Self evaluation: