19 regels
308 B
Makefile
19 regels
308 B
Makefile
HIP_PATH?= $(wildcard /opt/rocm/hip)
|
|
ifeq (,$(HIP_PATH))
|
|
HIP_PATH=../../..
|
|
endif
|
|
HIPCC=$(HIP_PATH)/bin/hipcc
|
|
|
|
EXE=hipDispatchLatency
|
|
|
|
all: install
|
|
|
|
$(EXE): hipDispatchLatency.cpp
|
|
$(HIPCC) hipDispatchLatency.cpp ResultDatabase.cpp -o $@
|
|
|
|
install: $(EXE)
|
|
cp $(EXE) $(HIP_PATH)/bin
|
|
|
|
clean:
|
|
rm -f *.o $(EXE)
|