Skip to content

Instantly share code, notes, and snippets.

View rahulsonone1234's full-sized avatar
🌍
Working For The Betterment Of The World

Rahul Sonone rahulsonone1234

🌍
Working For The Betterment Of The World
View GitHub Profile
@huzhifeng
huzhifeng / Makefile
Last active January 31, 2024 06:35
MPI and OpenMP Example
BINS:= mpi greetings omp hybrid
all: $(BINS)
mpi: mpi-hello.c
mpicc -o mpi mpi-hello.c
greetings: mpi-greetings.c
mpicc -o greetings mpi-greetings.c