-
Notifications
You must be signed in to change notification settings - Fork 247
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
flex_cblas_sdot and flex_cblas_snrm2 #486
base: feature/openblas
Are you sure you want to change the base?
Conversation
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.
we should make sure their test projects are running and passing at each step, otherwise it would be hard to figure out which part is causing trouble. (I mean the validating the output values)
maybe we can find one of their tests that hits all these functions and use that one (maybe test_insert_delete_consolidate)?
#include "filter_utils.h" | ||
#include "utils.h" | ||
#include "../../src/math_utils.cpp" |
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.
can you include #include "math_utils.h"?
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.
No, it doesn't know the path.
using Flex_INT = MKL_INT; | ||
#endif | ||
|
||
float flex_cblas_sdot(const int64_t N, const float *X, const int incX, const float *Y, const int incY) noexcept |
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.
can add these to math.h
Using the new preprocessor flag, moved 2 of MKL methods into wrapper methods.