15

我需要从命令行使用 nvcc 编译一个 cuda .cu 文件。该文件是“vectorAdd_kernel.cu”,包含以下代码:

extern "C" __global__ void VecAdd_kernel(const float* A, const float* B, float* C, int N)
{
    int i = blockDim.x * blockIdx.x + threadIdx.x;
    if (i < N)
        C[i] = A[i] + B[i];
}

我使用了以下命令(我需要获取一个 .cubin 文件):

nvcc --cubin --use-local-env --cl-version 2010 -keep -I "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include" vectorAdd_kernel.cu

编译器创建文件 vectorAdd_kernel.cpp4.ii 和 vectorAdd_kernel.cpp1.ii 然后它停止并输出以下输出:

C:\Users\Massimo\Desktop\Pluto>nvcc --cubin --use-local-env --cl-version 2010 vectorAdd_kernel.cu -keep -I "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include"

vectorAdd_kernel.cu

vectorAdd_kernel.cu

c:\program files (x86)\microsoft visual studio 10.0\vc\include\codeanalysis\sourceannotations.h(29): error: invalid redeclaration of type name "size_t"

C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/include\new(51): error: first parameter of allocation function must be of type## Heading ## "size_t"

C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/include\new(55): error: first parameter of allocation function must be of type "size_t"

你能帮我解决这个问题吗?

4

3 回答 3

16

我刚刚在 Visual Studio 2017 和 Cuda v9.0 中遇到了这个问题,试图从命令行编译nvcc. 经过长时间的会议后,我意识到我的 Visual Studio 命令行工具设置为cl.exex86director 使用,而不是x64. 有很多方法可以解决它,一种方法是覆盖它寻找其编译器工具的目录 - 例如:

nvcc -ccbin "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Tools\MSVC\14.11.25503\bin\HostX86\x64"  -o add_cuda add_cuda.cu

然后它工作得很好。

我还要提到,我使用了which.exegit 工具中的实用程序来确定cl.exe它正在访问的版本,但是该where命令(Windows 原生的)也可以正常工作。

更新:

另一种方法 - 可能是更好的方法 - 处理此问题的方法是将 Visual Studio 环境变量正确设置为 64 位,对于企业版,如下所示:

"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64

对于社区版,将路径中的“企业”替换为“社区”。

您还可以使用(例如)--vcvars_ver=14.0选择 14.0 工具集的工具集,这是使用 15.5 版本的 Visual Studio 编译 CUDA 9.1 所必需的。

然后你可以用这个简单地构建:

nvcc  -o add_cuda add_cuda.cu
于 2017-12-11T04:31:39.507 回答
2

VS 社区 2019:

为 VS 2019打开x64 本机工具命令提示符

**********************************************************************
** Visual Studio 2019 Developer Command Prompt v16.3.6
** Copyright (c) 2019 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x64'

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>cd c:\Users\AFP\Downloads\cuda_by_example\chapter03

c:\Users\AFP\Downloads\cuda_by_example\chapter03>nvcc hello_world.cu
hello_world.cu
   Creating library a.lib and object a.exp

c:\Users\AFP\Downloads\cuda_by_example\chapter03>

如果未初始化环境x64并且您已打开x86 Native Tools Command Prompt for VS 2019,请运行:

**********************************************************************
** Visual Studio 2019 Developer Command Prompt v16.3.6
** Copyright (c) 2019 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x86'

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>cd c:\Users\AFP\Downloads\cuda_by_example\chapter03

c:\Users\AFP\Downloads\cuda_by_example\chapter03>nvcc hello_world.cu
hello_world.cu

YOU GET LOT OF ERRORS ....

75 errors detected in the compilation of "C:/Users/AFP/AppData/Local/Temp/tmpxft_00004504_00000000-12_hello_world.cpp1.ii".

c:\Users\AFP\Downloads\cuda_by_example\chapter03>"c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
**********************************************************************
** Visual Studio 2019 Developer Command Prompt v16.3.6
** Copyright (c) 2019 Microsoft Corporation
**********************************************************************
[vcvarsall.bat] Environment initialized for: 'x64'

c:\Users\AFP\Downloads\cuda_by_example\chapter03>nvcc hello_world.cu
hello_world.cu
   Creating library a.lib and object a.exp

c:\Users\AFP\Downloads\cuda_by_example\chapter03>
于 2019-10-24T21:35:08.170 回答
1

我有类似的问题。

SourceAnnotations.h 中构建中断的代码:

#ifdef  _WIN64
typedef unsigned __int64    size_t;
#else
typedef _W64 unsigned int   size_t;
#endif

我已经_WIN64用这个添加了编译器符号--compiler-options "-D _WIN64"。我的 nvcc 构建字符串如下所示:

nvcc kernel.cu --cubin --compiler-options "-D _WIN64"
于 2015-02-15T20:54:12.283 回答