openmpref.txt 735 B

123456789101112131415161718192021222324252627
  1. # OpenMP reference
  2. Using OpenMP with C:
  3. https://curc.readthedocs.io/en/latest/programming/OpenMP-C.html
  4. Using OpenMP with Fortran:
  5. https://curc.readthedocs.io/en/latest/programming/OpenMP-Fortran.html
  6. Fortran Package Manager and OpenMP:
  7. https://www.openmp.org/blog/fortran-package-manager-and-openmp/
  8. OpenMP C Examples of Parallel Programming with OpenMP -
  9. https://people.math.sc.edu/Burkardt/c_src/openmp/openmp.html
  10. OpenMP Fortran Examples of Parallel Programming with OpenMP -
  11. https://people.math.sc.edu/Burkardt/f_src/openmp/openmp.html
  12. GCC:
  13. gcc program.c -o program -fopenmp
  14. Intel:
  15. icc program.c -o program -qopenmp
  16. GNU Fortran:
  17. gfortran program.f90 -o program -fopenmp
  18. Intel Fortran:
  19. ifort program.f90 -o program -qopenmp