Tagged Questions
1
vote
0answers
103 views
From Boost::ublas to ATLAS,
I have written a program using Boost::ublas that uses extensive sparse matrix vector multiplication. I am not satisfied at all with its speed and I want to try ATLAS. Is there a clear procedure to ...
1
vote
2answers
1k views
Looping over the non-zero elements of a uBlas sparse matrix
I have the following sparse matrix that contains O(N) elements
boost::numeric::ublas::compressed_matrix<int> adjacency (N, N);
I could write a brute force double loop to go over all the ...