如何在cuda
. 我有一个struct
template<typename T> mystruct{ T d1; T d2[10];}
我想使用上面的常量变量struct
并使用类似下面的代码(此时代码可能不正确)
template<typename T> __constant__ mystruct<T> const_data;
在此之后我想复制一些
mystruct<float> data;
进入const_data
并最终在设备代码中访问它。如果有人指出如何实现这一点,那就太好了。提前致谢。