Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 685 Bytes

File metadata and controls

28 lines (21 loc) · 685 Bytes

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