▶ 使用 CUDA Runtime API,运行时编译,Driver API 三种接口计算向量加法 ▶ 源代码,CUDA Runtime API #include <stdio.h> #include <cuda_runtime.h> #include "device_launch_parameters.h" #include <helper_cuda.h> #define ELEMENT 50000 __global__ void vectorAd…