/tensorfact

Implementation of tensor factorizations in C++

Primary LanguageC++MIT LicenseMIT

tensorfact

A C++ libary implementing various tensor factorizations.

Dependencies

This library depends on the following libraries:

GoogleTest is included as a submodule with this library and is used for running tests.

Building

CMake is used for compiling this library. For a basic build, run the following commands from inside the repository root directory:

mkdir build
cd build
cmake \
    -D blaspp_ROOT=/blaspp/install/prefix \
    -D lapackpp_ROOT=/lapackpp/install/prefix \
    ..
make
make test