9a55ff60a9
RCCL recorder w/ suggested change and UT
13 строки
359 B
Makefile
13 строки
359 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 rcclReplayer.cpp -O1 -g -o rcclReplayer $(INCLUDES) $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f ./rcclReplayer
|