与nsight eclipse版索引器的CUDA 7.5问题

时间:2015-09-03 11:57:10

标签: c++ eclipse cuda nsight

刚刚在ubuntu 15.04上安装了cuda 7.5。出于某种原因,我的索引器没有拿起任何cuda功能。我不知道为什么。代码编译得很好但我觉得很烦人,无法点击Ctrl + Space并查看我的选项。我试图包括一些cuda标题,但这似乎没有帮助。索引器适用于所有stl函数,但没有以cuda开头的函数...显示在自动完成中。

#include <iostream>
#include <fstream>
#include <cmath>
#include <vector>
#include <cuda.h>
#include <cuda_runtime.h>
#include <cuda_device_runtime_api.h>

inline void cuda_error(cudaError_t code, const char* lbl)
{
    if(code != cudaSuccess)
    {
        std::cerr << lbl << " : " << cudaGetErrorString(code) << std::endl;
        exit(1);
    }
}

struct City
{
    int n;
    float x, y;

    City(int n_ = 0, float x_ = 0, float y_ = 0) : n(n_), x(x_), y(y_) { }

    __host__ __device__ float fast_distance(const City& other)
    {
        float dx = other.x - x;
        float dy = other.y - y;
        return dx * dx + dy * dy;
    }
    __host__ __device__ float distance(const City& other)
    {
        float dx = other.x - x;
        float dy = other.y - y;
        return sqrtf(dx * dx + dy * dy);
    }
};

int main()
{
    using namespace std;

    ifstream fin("input.txt");
    vector<City> citites;
    City c;
    while(fin >> c.n >> c.x >> c.y)
        citites.push_back(c);

    City* cities_d;
    //if I start typing cuda and hit ctrl + space there are no option displayed
    cudaMalloc(&cities_d, sizeof(City) * citites.size());
    cudaMemcpy(cities_d, citites.data(), citites.size() * sizeof(City), cudaMemcpyHostToDevice);

    return 0;
}

1 个答案:

答案 0 :(得分:1)

我只需把它放在程序的顶部。不是很好的解决方案,但它的工作原理。我猜这个新版本的nsight没有自动包含已经包含的标头,默认情况下使用cuda。

#ifdef __CDT_PARSER__
#undef __CUDA_RUNTIME_H__
#include <cuda_runtime.h>
#endif

现在奇怪的是,当我这样做时,它会禁用黄色设备代码的突出显示。