我可以从非 nvcc 编译的 C++ 代码中调用 CUDA 运行时函数吗? [英] Can I call CUDA runtime function from C++ code not compiled by nvcc?

查看:20
本文介绍了我可以从非 nvcc 编译的 C++ 代码中调用 CUDA 运行时函数吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么方法可以调用 CUDA 运行时函数调用,例如

Is there any way I can call CUDA runtime function calls such as

cudaMemcpy(...);

在 .cpp 文件中,使用常规 C++ 编译器编译?

in a .cpp file, compiled with a regular C++ compiler?

推荐答案

有一个 这里的例子但是已经找不到了,不过大部分例子都复制到下面了.

There was an example here but it's not longer found, but most of the example was copied below.

调用者 C(但可能是 C++)

#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;
}

被调用者 (CUDA)

__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);
}

这篇关于我可以从非 nvcc 编译的 C++ 代码中调用 CUDA 运行时函数吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆