BabelStream/HIP.make
2017-02-28 10:04:36 +01:00

13 lines
177 B
Makefile

# TODO: HIP with HCC
HIPCC = hipcc
hip-stream: main.cpp HIPStream.cpp
$(HIPCC) $(CXXFLAGS) -std=c++11 -DHIP $^ $(EXTRA_FLAGS) -o $@
.PHONY: clean
clean:
rm -f hip-stream