view build/linux/amd64/atlas/atlas_cr1.h @ 217:ee138d32d0c1

Puzzled by this. The projects definitely do build with VS2015, I just checked. Switching back to 2015 for AppVeyor to see what happens
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 01 May 2018 10:05:20 +0100
parents ddea89113517
children
line wrap: on
line source
#ifndef ATLAS_CR1_H
#define ATLAS_CR1_H

#define ATL_L1r1elts 3809
#define ATL_r1MU 16
#define ATL_r1NU 1

#define ATL_GetPartR1(A_, lda_, mb_, nb_) \
{ \
   (mb_) = (ATL_L1r1elts - (ATL_r1NU+ATL_r1NU)) / (ATL_r1NU+ATL_r1NU+1); \
   if ((mb_) > ATL_r1MU) (mb_) = ATL_r1MU*((mb_)/ATL_r1MU); \
   else (mb_) = ATL_r1MU; \
   (nb_) = ATL_r1NU; \
}

#endif