2

我正在尝试编译以下代码:

#include <stdio.h>
#include <time.h>
#include <cuda.h>
#include <cuda_runtime_api.h>

texture<float, 2, cudaReadModeElementType> tex;

int main () { ... }

然而,nvcc 给了我以下错误:

main.c:6:8: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘&lt;’ token

我对 CUDA 很陌生,所以我想我在这里遗漏了一些东西。

4

1 回答 1

4

您只能在 .cu 文件中使用 CUDA 语法。

于 2012-10-25T14:28:25.017 回答