CUDA 编译器 (nvcc) 宏
是否有我可以使用的 CUDA 的 #define 编译器 (nvcc) 宏? (例如 Windows 的 _WIN32 等。)
我需要这个作为 nvcc 和 VC++ 编译器之间常见的头代码。 我知道我可以继续定义我自己的并将其作为参数传递给 nvcc 编译器 (-D),但如果已经定义了一个,那就太好了。
Is there a #define compiler (nvcc) macro of CUDA which I can use? (Like _WIN32 for Windows and so on.)
I need this for header code that will be common between nvcc and VC++ compilers. I know I can go ahead and define my own and pass it as an argument to the nvcc compiler (-D), but it would be great if there is one already defined.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这不会那么微不足道。 检查以下线程
http://forums。 nvidia.com/index.php?showtopic=32369&st=0&p=179913&#entry179913
I don't think it will be that trivial. Check the following thread
http://forums.nvidia.com/index.php?showtopic=32369&st=0&p=179913&#entry179913
我知道已经过去很长时间了,但您可能还会发现 __CUDA_ARCH__ 很有用。
I know it has been long time now, but you might also find
__CUDA_ARCH__
useful.