/usr/include/atlas/atlas_smvn_L1.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 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #ifndef ATLAS_SMVN_L1_H
#define ATLAS_SMVN_L1_H
#include "atlas_type.h"
#ifndef ATL_MVKERN_DEF
#define ATL_MVKERN_DEF
typedef void (*ATL_mvkern_t)
(ATL_CINT, ATL_CINT, const float*, ATL_CINT, const float*, float*);
#endif
void ATL_smvnk__2(ATL_CINT, ATL_CINT, const float*, ATL_CINT, const float*, float*);
void ATL_smvnk__2_b0(ATL_CINT, ATL_CINT, const float*, ATL_CINT, const float*, float*);
void ATL_smvnk__900003(ATL_CINT, ATL_CINT, const float*, ATL_CINT, const float*, float*);
void ATL_smvnk__900003_b0(ATL_CINT, ATL_CINT, const float*, ATL_CINT, const float*, float*);
static ATL_mvkern_t ATL_GetMVNKern
(ATL_CINT M, ATL_CINT N, const void *A, ATL_CINT lda,
ATL_mvkern_t *mvk_b0, int *DOTBASED,
int *mu, int *nu, int *minM, int *minN, int *alignX, int *ALIGNX2A,
int *alignY, int *FNU, ATL_INT *CacheElts)
{
if ((((((ATL_MulBySize(lda)) >> 4)) << 4)) == ATL_MulBySize(lda))
{
*minM = 0; *minN = 0;
*mu = 8; *nu = 4;
*alignX = 4; *alignY = 16;
*ALIGNX2A = 1;
*FNU = 0;
*CacheElts = 4751;
*mvk_b0 = ATL_smvnk__2_b0;
*DOTBASED = 0;
return(ATL_smvnk__2);
} /* end if on lda multiple restriction */
*minM = 8; *minN = 4;
*mu = 8; *nu = 4;
*alignX = 4; *alignY = 4;
*ALIGNX2A = 0;
*FNU = 1;
*CacheElts = 4751;
*mvk_b0 = ATL_smvnk__900003_b0;
*DOTBASED = 0;
return(ATL_smvnk__900003);
}
#define ATL_GetPartMVN(A_, lda_, mb_, nb_) { *(mb_) = 472; *(nb_) = 4; }
#endif /* end protection around header file contents */
|