Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • multi-injectors-many
  • simplerdma-wrapper
  • multi-all
  • ragged-one-sided
  • asyncreallyonesided-fast
  • asyncreallyonesided
  • simplerdma-wrapper-roce
  • simplerdma
  • simplerdma-razeh
  • asyncreallyonesided-bunched
  • asyncreallyonesidedx2
  • reallyonesided
  • simpleonesided
  • onesided
  • mpi-thread-split
  • multi-injectors
  • swiftmpiproxies
  • fixed-injections
  • mpiwaitall
  • v1.1
  • v1.0
22 results

Makefile

  • Makefile 478 B
    CFLAGS = -g -O0 -Wall
    
    all: swiftmpistepsim swiftmpifakestepsim
    
    SRC = mpiuse.c clocks.c histogram.c
    INC = mpiuse.h atomic.h cycle.h clocks.h histogram.h
    
    swiftmpistepsim: swiftmpistepsim.c $(SRC) $(INC)
    	mpicc $(CFLAGS) -o swiftmpistepsim swiftmpistepsim.c $(SRC) -lpthread -lm
    
    swiftmpifakestepsim: swiftmpifakestepsim.c $(SRC) $(INC)
    	mpicc $(CFLAGS) -o swiftmpifakestepsim swiftmpifakestepsim.c $(SRC) -lpthread -lm
    
    clean:
    	rm -f swiftmpistepsim
    	rm -f swiftmpifakestepsim