mirror of
https://github.com/amd/blis.git
synced 2026-05-13 10:35:38 +00:00
Fixed typo in --disable-sup-handling macro guard.
Details: - Fixed an incorrectly-named macro guard that is intended to allow disabling of the sup framework via the configure option --disable-sup-handling. In this case, the preprocessor macro, BLIS_DISABLE_SUP_HANDLING, was still named by its name from an older uncommitted version of the code (BLIS_DISABLE_SM_HANDLING).
This commit is contained in:
@@ -46,7 +46,7 @@ err_t bli_gemmsup
|
||||
)
|
||||
{
|
||||
// Return early if small matrix handling is disabled at configure-time.
|
||||
#ifdef BLIS_DISABLE_SM_HANDLING
|
||||
#ifdef BLIS_DISABLE_SUP_HANDLING
|
||||
return BLIS_FAILURE;
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user