次のコードをコンパイルしようとしています。
#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 ‘<’ token
私はCUDAにかなり慣れていないので、ここで何かが欠けていると思います。