我正在尝试编译并链接.c和.cu文件,我收到警告
warning: implicit declaration of function
我在.cu文件中有一个函数,我需要从.c文件调用。 .c文件使用gcc编译,.cu文件使用nvcc编译器编译。由于.cu文件的头文件包含内置的cuda数据类型,因此无法在.c文件中包含该文件。我仍然能够编译和链接所有文件,但我想摆脱我无法做到的警告。代码的基本结构是:
gpu.cu
void fooInsideCuda();
cpu.c
fooInsideCuda(); //calling function in gpu.cu
非常感谢任何帮助或建议。
答案 0 :(得分:1)
此链接:https://devtalk.nvidia.com/default/topic/388072/calling-cuda-functions-from-a-c-file/
回答你的问题:,.基本上是:
<。>文件中的
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cuda.h>
extern void kernel_wrapper(int *a, int *b);
int main(int argc, char *argv[])
{
int a = 2;
int b = 3;
kernel_wrapper(&a, &b);
return 0;
}
并在.cu文件中;
__global__ void kernel(int *a, int *b)
{
int tx = threadIdx.x;
switch( tx )
{
case 0:
*a = *a + 10;
break;
case 1:
*b = *b + 3;
break;
default:
break;
}
}
void kernel_wrapper(int *a, int *b)
{
int *d_1, *d_2;
dim3 threads( 2, 1 );
dim3 blocks( 1, 1 );
cudaMalloc( (void **)&d_1, sizeof(int) );
cudaMalloc( (void **)&d_2, sizeof(int) );
cudaMemcpy( d_1, a, sizeof(int), cudaMemcpyHostToDevice );
cudaMemcpy( d_2, b, sizeof(int), cudaMemcpyHostToDevice );
kernel<<< blocks, threads >>>( a, b );
cudaMemcpy( a, d_1, sizeof(int), cudaMemcpyDeviceToHost );
cudaMemcpy( b, d_2, sizeof(int), cudaMemcpyDeviceToHost );
cudaFree(d_1);
cudaFree(d_2);
}
然后是一个与此类似的.h文件:
#ifndef __B__
#define __B__
#include "cuda.h"
#include "cuda_runtime.h"
extern "C" void kernel_wrapper(int *a, int *b);
#endif
还要注意.cu编译器使用C ++约定
因此需要.cu文件中的以下内容:
extern "C" void A(void)
{
.......
}
所以使用'C'约定