all: cuda cpu threaded cpu: plainc.c gcc plainc.c -o cpuVersion -lm cuda: cuda.cu nvcc cuda.cu -o cudaVersion threaded: threaded.c gcc threaded.c -lm -lpthread -o threadVersion test: all time ./cudaVersion time ./cpuVersion time ./threadVersion clean: rm -f cudaVersion thread cpuVersion *.ppm