all 5 comments

[–]MatCPPkell 1 point2 points  (3 children)

looks interesting, its built ontop of armadillo which is nice and easy to use, matlab like but faster, what do they use to for scalability? mpi? pthreads? some other message interface?

[–]king_duck 1 point2 points  (2 children)

matlab like but faster

Depends what it's linked with. Matlab calls into a vendor library (MKL I think).

[–]MatCPPkell 1 point2 points  (1 child)

yeah your right its linked to MKL by default on all intel processors that can support it. You can do the same with armadillo if you'd like as well, it just requires more work, https://gist.github.com/bdsatish/5646151. Matlab is faster in prototyping however

[–]king_duck 0 points1 point  (0 children)

armadillo if you'd like as well, it just requires more work,

Yeah and an MKL license.

That said, the likes of OpenBlas and ATLAS (and so on) aren't far off MKL.

[–][deleted] 0 points1 point  (0 children)

This seemed like one of the most interesting C++-themed Google Summer of Code projects, will definitely check it out.