5
使用Thrust庫可以使用push_back嗎?那麼矢量矢量呢?我想在GPU在CPU有什麼用:使用Thrust庫的push_back
vector< vector<int> > MyVector(100);
...
MyVector[i].push_back(j);
有沒有一種方法來使用它像例如:
thrust::device_vector<thrust::device_vector<int>> d_vec(4);
和有關創建device_vectors數組是什麼?可能嗎?
我想要的是以這種方式訪問'device_vector dv':'dv [i] [j'] – Manolete
@Manolete:我不認爲這是可能的。 – talonmies
但你可以做dv [i * width + j]。 – harrism