cuda 头文件 .cuh 私有主机函数

发布于 2024-12-08 10:11:03 字数 240 浏览 0 评论 0原文

在 cuda 中,我们可以创建扩展名为 .cuh 的头文件,并且可以从任何地方调用这些函数,例如,

   __device__ void doSomething()
  {
    ....................
  }

  void doSomthingOnHost()
  {
    ....................
  }

这两个函数是公共的。如何将主机功能设置为私有?

In cuda we can create header files with .cuh extension and we can call the functions from anywhere like,

   __device__ void doSomething()
  {
    ....................
  }

  void doSomthingOnHost()
  {
    ....................
  }

these two functions are public. How can i make the host function to private?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

二手情话 2024-12-15 10:11:03

我发现最适合我的是

  1. 使用我的 CUDA 内核、其公共 C/C++ 包装器以及使设备代码工作所需的任何私有/封装 C/C++ 函数来制作 .CU 文件。
  2. 制作 .H 文件,提供对 .CU 文件内的 C/C++ 包装器的访问,#include 它们在 .CU 文件和任何我需要从
  3. Make .C/.CPP 文件 调用设备代码的 .C/.CPP 文件中它处理高级应用程序逻辑,并通过步骤 2 中描述的头文件提供的接口调用设备代码。

要在此方案中使主机函数私有,只需不要将它们的原型放在标头中...如果你问我的话,这是一个不错的计划。

I find that what works best for me is to

  1. Make .CU files with my CUDA kernels, their public C/C++ wrappers and any private/encapsulated C/C++ functions I need to make the device code work.
  2. Make .H files which provide access to the C/C++ wrappers inside my .CU files, #including them in the .CU files and any .C/.CPP files I need to call the device code from
  3. Make .C/.CPP files which handle the high-level application logic and which invoke device code through interfaces supplied through the header files described in step 2.

To make host functions private in this scheme, just don't put prototypes for them in the header... a pretty neat scheme if you ask me.

月下伊人醉 2024-12-15 10:11:03

严格来说,在 C++ 中没有办法将自由函数设为私有——任何可以看到函数签名的客户端都可以调用它。

相反,您可以将 doSomethingOnHost 设为某个类的私有静态成员函数:

class my_class
{
  private:
    static void doSomethingOnHost(); // only my_class or friends of my_class may use this function
};

Strictly speaking, there's no way to make a free function private in C++ -- any client which can see a function's signature can call it.

Instead, you could make doSomethingOnHost a private, static member function of some class:

class my_class
{
  private:
    static void doSomethingOnHost(); // only my_class or friends of my_class may use this function
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文