/usr/include/atlas/atlas_cGetNB_geqrf.h is in libatlas-dev 3.10.2-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #ifndef ATL_cGetNB_geqrf
/*
* NB selection for GEQRF: Side='RIGHT', Uplo='UPPER'
* M : 25,112,224,448,952,1904
* N : 25,112,224,448,952,1904
* NB : 9,56,56,56,56,112
*/
#define ATL_cGetNB_geqrf(n_, nb_) \
{ \
if ((n_) < 68) (nb_) = 9; \
else if ((n_) < 1428) (nb_) = 56; \
else (nb_) = 112; \
}
#endif /* end ifndef ATL_cGetNB_geqrf */
|