ba97c9c18b
* First version of new replayer, with comments on future TODOs * plus minor fixes for UT * Updated format of recorder, especially in binary department, according to replayer's need
13 wiersze
370 B
Makefile
13 wiersze
370 B
Makefile
ROCM_DIR ?= /opt/rocm
|
|
RCCL_DIR ?= ../../build/release
|
|
MPI_DIR ?= /opt/ompi
|
|
|
|
INCLUDES = -I$(MPI_DIR)/include -I$(RCCL_DIR)/include -I$(RCCL_DIR)/hipify/src/include
|
|
LDFLAGS = -L$(MPI_DIR)/lib -L$(RCCL_DIR) -lmpi -lrccl
|
|
|
|
main: rcclReplayer.cpp
|
|
$(ROCM_DIR)/bin/hipcc -std=c++20 rcclReplayer.cpp -O0 -g -o rcclReplayer $(INCLUDES) $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f ./rcclReplayer
|