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
When building PyMFEM using --mfem-prefix to link the wrapper with MFEM which was built separately outside PyMFEM setup.py, the build could fail during the serial wrapper building.
Reason:
Serial wrapper (mfem.ser) assumes that mfem is built without any dependency.
Short-term solution:
add -no-serial option to skip building the serial wrapper.
Long-term solution:
expand mfem.par so that mfem.par can be linked with serial MFEM.
essentially this could be done by add #Ifdef MFEM_USE_MPI in the interface file in mfem/_par
The text was updated successfully, but these errors were encountered:
When building PyMFEM using --mfem-prefix to link the wrapper with MFEM which was built separately outside PyMFEM setup.py, the build could fail during the serial wrapper building.
Reason:
Serial wrapper (mfem.ser) assumes that mfem is built without any dependency.
Short-term solution:
add -no-serial option to skip building the serial wrapper.
Long-term solution:
expand mfem.par so that mfem.par can be linked with serial MFEM.
essentially this could be done by add #Ifdef MFEM_USE_MPI in the interface file in mfem/_par
The text was updated successfully, but these errors were encountered: