kokkos

C++ performance portability ecosystem for parallel computing

brewmacoslinux
Try with needOr install directly
Source

About

C++ Performance Portability Ecosystem for parallel execution and abstraction

Commands

kokkos

Examples

Include Kokkos headers in C++ compilation for parallel code$ g++ -I$(brew --prefix kokkos)/include mycode.cpp -o myapp
Link against Kokkos library with OpenMP backend$ g++ mycode.cpp -o myapp -L$(brew --prefix kokkos)/lib -lkokkos
Use pkg-config to get Kokkos compiler and linker flags$ pkg-config --cflags --libs kokkos