-
Notifications
You must be signed in to change notification settings - Fork 70
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
cblas: import all func prototype into header #267
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(cherry picked from commit 0d274db)
hmm, what's wrong with appveyor? |
iblislin
changed the title
cblas: add func prototype for cblas_(s|d)syrk
WIP: cblas: import all func prototype into header
Sep 8, 2017
Edit: please ignore this comment └─[iblis@kaladbolg]% clang -E cblas.h | tail
const blasint clda, const blasint cldb);
void cblas_sgeadd(const enum CBLAS_ORDER CORDER,const blasint crows, const blasint ccols, const float calpha, float *a,
const blasint clda, const float cbeta,
float *c, const blasint cldc);
void cblas_dgeadd(const enum CBLAS_ORDER CORDER,const blasint crows, const blasint ccols, const double calpha, double *
a, const blasint clda, const double cbeta,
double *c, const blasint cldc);
void cblas_cgeadd(const enum CBLAS_ORDER CORDER,const blasint crows, const blasint ccols, const float *calpha, float *a
, const blasint clda, const float *cbeta,
float *c, const blasint cldc);
void cblas_zgeadd(const enum CBLAS_ORDER CORDER,const blasint crows, const blasint ccols, const double *calpha, double
*a, const blasint clda, const double *cbeta,
double *c, const blasint cldc); ┌─[~/git/MXNet/deps]
| [Venv(py36)] [ cblas] [-- INSERT --]
└─[iblis@kaladbolg]% clang -DINTERFACE64 -E cblas.h | tail
const blasint clda, const blasint cldb);
void cblas_sgeadd64_(const enum CBLAS_ORDER CORDER,const blasint crows, const blasint ccols, const float calpha, float
*a, const blasint clda, const float cbeta,
float *c, const blasint cldc);
void cblas_dgeadd64_(const enum CBLAS_ORDER CORDER,const blasint crows, const blasint ccols, const double calpha, doubl
e *a, const blasint clda, const double cbeta,
double *c, const blasint cldc);
void cblas_cgeadd64_(const enum CBLAS_ORDER CORDER,const blasint crows, const blasint ccols, const float *calpha, float
*a, const blasint clda, const float *cbeta,
float *c, const blasint cldc);
... |
Also, enable ILP64 symbol if INTERFACE64 defined
iblislin
changed the title
WIP: cblas: import all func prototype into header
cblas: import all func prototype into header
Sep 9, 2017
ready for review, please squash it while merging |
Manually merged as 873715b, thank you for your work! |
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
according to this PR in MXNet: apache/mxnet#7741