Sanfilippo
Sanfilippo
No no one can certainly split the Makefile.am across multiple files and use `include` directive to collect them in the main `Makefile.am`, if you prefer. I can do that quickly....
Ok now the Makefile.am is split across different files, included in subdirs, there is still a bit of a mess in the master Makefile.am and one would probably split the...
My `autgen.sh` -like script (for nissa) goes like this ``` #!/bin/sh rm -fr \ aclocal.m4 \ autom4te.cache \ $(find . -name "Makefile.in") \ config/{compile,config.guess,config.sub,depcomp,install-sh,missing,ylwrap} \ configure aclocal autoreconf --verbose --install...
For what concern flags, I've modified the ALIGN stuff, adding or removing the description (if I believe correctly), but it would be better if you could check it...
Yes, but the `autogen.sh` or `boostrap.sh`would be advisable
> The wikipedia article about GNU Autotools has a nice flowchart, this really helped me when I tried to compile the USQCD code. If this is nice, I don't want...
In the nissa-MG intergace I store a checksum of the configuration used for setup https://github.com/sunpho84/nissa/blob/aef9815de954e01030aed42bcac784b23b0d285d/src/base/DDalphaAMG_bridge.cpp#L142 and then I compare each time the used configuration. If they differ, a new setup...
Which structs are you talking about? Do you mean "su3", "su32" etc? Can we check about the possible padding of the internal data? For example printing explicitly ``` su3 u;...
Can you give me the configure string? I will make some test myself
I've tried compiling with the following configure string: ``` ../configure \ '--disable-omp' \ '--enable-mpi' \ '--with-mpidimension=4' \ '--enable-alignment=32' \ '--with-lapack=-L/cineca/prod/opt/compilers/intel/pe-xe-2016/binary/mkl/lib/intel64 -lmkl_blas95_lp64 -lmkl_avx2 -lmkl_core -lmkl_sequential -lmkl_intel_lp64' \ '--with-limedir=/marconi/home/userexternal/fsanfili' \ '--with-lemondir=/marconi/home/userexternal/fsanfili' \...