You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
p3dfft++ has p3dfft.3/include/p3dfft.h and p3dfft has p3dfft/include/p3dfft.h. The former is the declaration file for the implementation that's safe for use by a C compiler. The latter it is a set of wrapper that needs config.h to wrap Fortran implementation based on the compiler used. This means that a file with a line:
#include <p3dfft.h>
could be using either library depending on the environment settings and compiler flags.
The text was updated successfully, but these errors were encountered:
p3dfft++ has
p3dfft.3/include/p3dfft.h
and p3dfft hasp3dfft/include/p3dfft.h
. The former is the declaration file for the implementation that's safe for use by a C compiler. The latter it is a set of wrapper that needsconfig.h
to wrap Fortran implementation based on the compiler used. This means that a file with a line:could be using either library depending on the environment settings and compiler flags.
The text was updated successfully, but these errors were encountered: