Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been using the Colt library (c.f. website) for some time, and have recently come across the relatively new Parallel Colt library (see here and here).

Since I was undertaking a new problem using linear algebra for which processing speed is important, I thought I would take a look at this library.

However, I don't seem to be getting any performance improvements from using Parallel Colt (version 0.10.0) and when I profile the process (using YourKit), I don't see any additional threads being created.

Basically, I'm solving a set of simultaneous linear equations.

Using Colt:

cern.colt.matrix.DoubleMatrix2D lhs = new cern.colt.matrix.impl.DenseDoubleMatrix2D(x, x);
cern.colt.matrix.DoubleMatrix1D rhs = new cern.colt.matrix.impl.DenseDoubleMatrix1D(x);
// fill x equations;
cern.colt.matrix.linalg.Algebra algebra = cern.colt.matrix.linalg.Algebra.DEFAULT;
cern.colt.matrix.DoubleMatrix1D results = algebra.mult(algebra.inverse(lhs), rhs);

Using Parallel Colt:

cern.colt.matrix.tdouble.DoubleMatrix2D lhs = new cern.colt.matrix.tdouble.impl.DenseDoubleMatrix2D(x, x);
cern.colt.matrix.tdouble.DoubleMatrix1D rhs = new cern.colt.matrix.tdouble.impl.DenseDoubleMatrix1D(x);
// fill x equations;
cern.colt.matrix.tdouble.algo.DenseDoubleAlgebra algebra = cern.colt.matrix.tdouble.algo.DenseDoubleAlgebra.DEFAULT;
cern.colt.matrix.tdouble.DoubleMatrix1D results = algebra.mult(algebra.inverse(lhs), rhs);
  1. Has any else used Parallel Colt, and successfully found it using multi-threading?
  2. Are these classes in Parallel Colt actually multi-threaded? (there's nothing to suggest either way in the javadoc (though this is for version 0.7.2))
  3. Is there an alternative way of doing this in Parallel Colt that is multi-threaded?
  4. If Parallel Colt cannot do this multi-threaded, are there other open-source libraries that can?
share|improve this question
This SO question was useful. – amaidment Aug 13 '12 at 16:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.