/usr/include/atlas/atlas_dmvT.h is in libatlas-dev 3.8.4-3build1.
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 18 19 20 21 22 23 | #ifndef ATLAS_MVT_H
#define ATLAS_MVT_H
#include "atlas_misc.h"
#define ATL_mvTMU 1
#define ATL_mvTNU 128
#ifndef ATL_L1mvelts
#define ATL_L1mvelts ((3*ATL_L1elts)>>2)
#endif
#ifndef ATL_mvNNU
#include "atlas_dmvN.h"
#endif
#define ATL_GetPartMVT(A_, lda_, mb_, nb_) \
{ \
*(mb_) = (ATL_L1mvelts - (ATL_mvTMU<<1)) / ((ATL_mvTMU<<1)+1); \
if (*(mb_) > ATL_mvTNU) *(mb_) = (*(mb_)/ATL_mvTNU)*ATL_mvTNU; \
else (*mb_) = ATL_mvTNU; \
*(nb_) = ATL_mvTMU; \
}
#endif
|