nested stl containers possible with Thrust?

hello
I want to make a storage container that looks like vector<vector>…with the size of the outer and the inner vector pre-defined. This is easily possible in standard c++. How can i do this using the thrust::device_vector data structure??

Sorry, it’s not currently possible, but host_vector<device_vector> or std::vector<device_vector> should work.

Sorry, it’s not currently possible, but host_vector<device_vector> or std::vector<device_vector> should work.