mirror of
https://github.com/amd/blis.git
synced 2026-05-11 09:39:59 +00:00
Disabled blocksize checks for memory pools.
Details: - Temporarily disabled checks that ensure that enough memory will be allocated by the contiguous memory allocator for all types, given that the values for double precision real are the ones used to allocate the space. These checks can easily go awry in certain situations, especially if you are developing for only one datatype. So for now, they are probably more trouble than they are worth.
This commit is contained in:
@@ -77,6 +77,7 @@
|
||||
#error KC must be multiple of KR for all datatypes.
|
||||
#endif
|
||||
|
||||
/*
|
||||
// Verify that cache blocksizes indicate consistent storage.
|
||||
// Specifically, verify that:
|
||||
// - MC_D * KC_D >= MC_? * KC_?.
|
||||
@@ -107,7 +108,6 @@
|
||||
#error KC_D*NC_D must be >= that of KC*NC for all other datatypes.
|
||||
#endif
|
||||
|
||||
/*
|
||||
#if ( \
|
||||
( ( BLIS_DEFAULT_MC_D * BLIS_DEFAULT_NC_D * SIZEOF_D ) < \
|
||||
( BLIS_DEFAULT_MC_S * BLIS_DEFAULT_NC_S * SIZEOF_S ) ) || \
|
||||
|
||||
Reference in New Issue
Block a user