What's this easiest / most efficient way to initialize these blocks of doubles, preferably at compile time:
#define N 1000
double mul1[N][N] __attribute__ ((aligned (64)));
double mul2[N][N] __attribute__ ((aligned (64)));
They're used for "const
" read only test data.