README 507 B

1234567891011121314151617
  1. MFEM is a free, lightweight, scalable C++ library for finite element
  2. methods.
  3. Building options that can be set using the environment variable:
  4. - OMP=yes, use OpenMP.
  5. - MPI=yes, use MPI (requires a MPI implementation either mpich or
  6. openmpi and the hypre and metis package.
  7. - CUDA=yes, requires the CUDA toolkit.
  8. - TESTS=yes, to run the tests.
  9. Compiling the examples:
  10. # mkdir mfem-examples; cd mfem-examples
  11. # cp -av /usr/share/mfem-4.5/{data,examples} .
  12. # make -C examples
  13. # make