Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 714 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 714 Bytes

State Space Model

Benchmarks

Current benchmarks can be found here

Installation

Dependencies

  • autotools
  • cmake
  • g++

Compilation

The package can be compiled by running

    autoreconf -vif
    mkdir build && cd build
    ../configure
    make

Apple silicon

In order to compile against Apple's Accelerate framework, the library path needs to be supplied to the configure script, e.g.:

mkdir build && cd build
../configure CPPFLAGS=-I/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Headers
make