ispc

Compiler for SIMD programming on the CPU with multi-target support

brewmacoslinux
Try with needOr install directly
Source

About

Compiler for SIMD programming on the CPU

Commands

ispc

Examples

Compile an ISPC source file to object code$ ispc -o output.o input.ispc
Compile with specific target architecture (AVX2)$ ispc --target=avx2 -o output.o input.ispc
Generate C++ header file from ISPC source$ ispc --emit-c++-header -o output.h input.ispc