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);
- Has any else used Parallel Colt, and successfully found it using multi-threading?
- 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))
- Is there an alternative way of doing this in Parallel Colt that is multi-threaded?
- If Parallel Colt cannot do this multi-threaded, are there other open-source libraries that can?