High-performance C++ math library for dense and sparse arithmetic
High-performance C++ math library for dense and sparse arithmetic
blaze$ #include <blaze/Blaze.h>
using namespace blaze;
DynamicMatrix<double> A(10, 5);$ g++ -std=c++14 -O3 myprogram.cpp -o myprogram -I$(brew --prefix blaze)/include$ g++ -std=c++14 sparse_math.cpp -o sparse_math -I$(brew --prefix blaze)/include -march=native