We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在math_cblas.cpp中有如下代码:
#if TS_PLATFORM_OS_MAC || TS_PLATFORM_OS_IOS #include <Accelerate/Accelerate.h> #elif TS_PLATFORM_OS_LINUX #include <openblas/cblas.h> #elif TS_PLATFORM_OS_WINDOWS && TS_PLATFORM_CC_MINGW #include <OpenBLAS/cblas.h> #else #include <cblas.h> #endif
需要Accelerate.h和cblas.h,但是都缺失
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在math_cblas.cpp中有如下代码:
#if TS_PLATFORM_OS_MAC || TS_PLATFORM_OS_IOS
#include <Accelerate/Accelerate.h>
#elif TS_PLATFORM_OS_LINUX
#include <openblas/cblas.h>
#elif TS_PLATFORM_OS_WINDOWS && TS_PLATFORM_CC_MINGW
#include <OpenBLAS/cblas.h>
#else
#include <cblas.h>
#endif
需要Accelerate.h和cblas.h,但是都缺失
The text was updated successfully, but these errors were encountered: