我正在尝试计算 GPU 和 CPU FLOPs,我从这里得到了源代码
我将它重命名为 cudaflops.cu 并用这个 makefile 编译它
################################################################################
#
# Build script for project
#
################################################################################
# Add source files here
EXECUTABLE := benchmark
# Cuda source files (compiled with cudacc)
CUFILES := cudaflops.cu
# C/C++ source files (compiled with gcc / c++)
CCFILES :=
################################################################################
# Rules and targets
include ../../common/common.mk
#########################################
Tt 工作正常并给出结果 367 GFlOPs
但是现在,我不知道在 CPU 中测试这个源,我读到这个说源可以在 CPU 上运行。
那么修改后的makefile怎么做呢??