我正在做一些计算,并将得到的 Jacobian NxN 矩阵和右手边向量(n)传递给 boost 的 ublas 并最终传递给 ViennaCL。
使用 copy() 向量没有问题,但是,矩阵被证明是困难的。任何帮助将不胜感激
// Global Variables
vector< vector<float> > Jacobian(0, vector<float>(0)); //Jacobian matrix
vector<float> delta_PQ; //rhs
//
// Set up some ublas objects
//
ublas::vector<ScalarType> rhs;
ublas::vector<ScalarType> result;
ublas::compressed_matrix<ScalarType> ublas_matrix;
using namespace boost::numeric;
typedef float ScalarType;
// Resize RHS from main program
resize_vector(rhs2, j_dimension);
ublas_matrix2.resize(j_dimension, j_dimension);
//copy content to GPU vector (recommended initialization)
copy(delta_PQ.begin(), delta_PQ.end(), rhs.begin()); //works
copy(Jacobian.begin(), Jacobian.end(), ublas_matrix); //won't compile
我尝试了许多变体并查看了文档:
http://ublas.sourceforge.net/refdoc/classboost_1_1numeric_1_1ublas_1_1compressed__matrix.html
此外,ViennaCL 的示例对我不起作用:
http://viennacl.sourceforge.net/viennacl-examples-sparse-matrix.html
经过几个小时的谷歌搜索后,我决定在这里发帖,希望其他人可以破解它,以便下一个人更容易找到。