Skip to content

运行Faq

neiltian edited this page Mar 23, 2021 · 8 revisions

是否支持可以在PC上运行

TNN支持在linux和windows上编译和运行

如何运行bfp16代码

TNNTest的运行参数-pr设为LOW

cv::Mat如何转换成TNN::Mat

cv::Mat cv_mat;
MatType mat_type = N8UC4; // if cv_mat.channels() == 3, then mat_type = N8UC3.
DimsVector dims = {1, cv_mat.channels(), cv_mat.rows, cv_mat.cols};
auto tnn_mat = new TNN::Mat(DeviceType, mat_type, dims, (void *)cv_mat.ptr);
Clone this wiki locally