gpt4 book ai didi

visual-c++ - 将 .cpp 文件中的 cuda 主机代码分开

转载 作者:行者123 更新时间:2023-12-02 03:37:12 26 4
gpt4 key购买 nike

main.cpp

#include<iostream>
#include "cuda.h"


using namespace std;
void cuda_calculation();


int main()
{
cuda_calculation();
return 0;
}

cu.h

void call(int , int ,float*  , int  );

cuda.cpp

#include <stdio.h>
#include <cuda.h>
#include "cu.h"




void cuda_calculation()
{
float *a_h, *a_d; // Pointer to host & device arrays
const int N = 10; // Number of elements in arrays
size_t size = N * sizeof(float);
a_h = (float *)malloc(size); // Allocate array on host
cudaMalloc((void **) &a_d, size); // Allocate array on device
// Initialize host array and copy it to CUDA device
for (int i=0; i<N; i++) a_h[i] = (float)i;
cudaMemcpy(a_d, a_h, size, cudaMemcpyHostToDevice);
// Do calculation on device:
int block_size = 4;
int n_blocks = N/block_size + (N%block_size == 0 ? 0:1);
void call(n_blocks, block_size,&a_d, N);
/*square_array <<< n_blocks, block_size >>> (a_d, N);*/
// Retrieve result from device and store it in host array
cudaMemcpy(a_h, a_d, sizeof(float)*N, cudaMemcpyDeviceToHost);
// Print results
for (int i=0; i<N; i++) printf("%d %f\n", i, a_h[i]);
// Cleanup
free(a_h); cudaFree(a_d);
}

cu.cu

#include <stdio.h>
#include "cu.h"
#include <cuda.h>

// Kernel that executes on the CUDA device
__global__ void square_array(float *a, int N)
{
int idx = blockIdx.x * blockDim.x + threadIdx.x;
if (idx<N) a[idx] = a[idx] * a[idx];
}


//}


void call(int a,int b,float* c,int d)
{
square_array <<< 3,4 >>> (c,d);
}

我试图在一个 cpp 文件中分离内核代码和主机代码,但是出现以下错误:

Error    'cudaMemcpy': identifier not found and the other cuda related identifier is not identified.

how to use the cuda related identifier in cpp file and call the kernal functions

最佳答案

有一些错误:void cuda_calculation(); 需要通过头文件 (cu.h) 对 main.cpp 可见。

此外,确保使用 nvcc 编译您的 .cu 文件,而不是作为标准 C++ 文件。使用 CUDA 编译规则简化此过程(作为 CUDA 工具包的一部分默认安装)

关于visual-c++ - 将 .cpp 文件中的 cuda 主机代码分开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22633631/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com