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:
Field G. Van Zee
2013-04-21 15:10:34 -05:00
parent b6ef84fad1
commit 2d6f9e8379

View File

@@ -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 ) ) || \