Add Collatz Conjecture tester

This commit is contained in:
Darren VanBuren 2019-03-18 19:30:42 -07:00
parent f64882f5c3
commit f544a08146
3 changed files with 127 additions and 0 deletions

View file

@ -1,2 +1,7 @@
.PHONY: hello collatz
collatz: collatz.cpp
clang++ -o collatz collatz.cpp -lOpenCL
hello: main.cpp
g++ -o hello main.cpp -lOpenCL