CPU -> CUDA memory conversion
auto h = [[0.1f, 0.2f, 0.3f], [0.4f, 0.5f, 0.6f]].variable; auto d = h.to!DeviceStorage; assert(h.data == d.to!HostStorage.data);
See Implementation
CPU -> CUDA memory conversion