libomp

LLVM's OpenMP runtime library for parallel computing

brewmacoslinux
Try with needOr install directly
Source

About

LLVM's OpenMP runtime library

Commands

libomp

Examples

Compile a C program with OpenMP support using clang$ clang -fopenmp -o program program.c
Compile a Fortran program with OpenMP parallelization$ flang -fopenmp -o program program.f90
Set number of OpenMP threads for execution$ OMP_NUM_THREADS=4 ./program