| 1234567891011121314151617 | # Copyright (c) 2020 NVIDIA Corporation.  All rights reserved. CC := pgccACCFLAGS_1 := -fastACCFLAGS_2 := -fast -ta=multicore -Minfo=accelACCFLAGS_3 := -fast -ta=tesla:managed -Minfo=accellaplace_serial: jacobi.c laplace2d.c	${CC} ${ACCFLAGS_1} -o laplace jacobi.c laplace2d.claplace_multicore: jacobi.c laplace2d.c	${CC} ${ACCFLAGS_2} -o laplace jacobi.c laplace2d.claplace_gpu: jacobi.c laplace2d.c	${CC} ${ACCFLAGS_3} -o laplace jacobi.c laplace2d.cclean:	rm -f *.o laplace
 |