Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从数组火的文档中读到,可以从主机指针构造一个数组火数组。就像是
double * host_data; //do stuff with host_data af::array array(nrows, ncols, host_data); //suppose is a nrows by ncols array
但是,我现在不清楚数组触发是否会自动将数组的类型确定为“双”(f64)而不是默认的浮点(f32)。
非常感谢你的帮助。
是的,主机指针用于推断数组的类型。这就是为什么这个特定的构造函数没有显式传递类型的参数。