Add Bus Bandwidth test, leveraged from SHOC.

[ROCm/hip-tests commit: 8cb885f03a]
This commit is contained in:
Ben Sander
2016-02-12 21:30:43 -06:00
orang tua 47c50f5906
melakukan cb84597d5e
5 mengubah file dengan 833 tambahan dan 0 penghapusan
@@ -0,0 +1,16 @@
HIP_PATH?=$(shell hipconfig -p)
HIPCC=$(HIP_PATH)/bin/hipcc
EXE=hipBusBandwidth
all: install
$(EXE): hipBusBandwidth.cpp ResultDatabase.cpp
$(HIPCC) $^ -o $@
install: $(EXE)
cp $(EXE) $(HIP_PATH)/bin
clean:
rm -f *.o $(EXE)