Skip to content
Snippets Groups Projects
Commit 81b64438 authored by Michal Pitonak's avatar Michal Pitonak
Browse files

Upload New File

parent 1095afdf
Branches master
No related merge requests found
#path to GASPI root installed with MPI support
GASPI=/path/to/gpi
#compiler
CC = mpicc
#flags
CFLAGS = -m64 -I${GASPI}/include
LDFLAGS = -L${GASPI}/lib64
LIBS = -lgomp -lpthread -lm -ldl -lGPI2 -libverbs
####
SOURCES = terasort_gaspi_double_file.c
EXECUTABLE = terasort_gaspi_double_file
all: $(EXECUTABLE)
$(EXECUTABLE): $(SOURCES)
$(CC) $(CFLAGS) $(SOURCES) $(LDFLAGS) $(LIBS) -o $@
clean:
rm -f $(EXECUTABLE)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment