Skip to content

Installation

Péter Kardos edited this page Jan 27, 2018 · 3 revisions

Mathter is a header-only library, so you don't need to compile it. Clone the repository and include files from <RepoDir>/Mathter/*.hpp. The rest of the files are required for development, and are of no use to you, however, you may find some examples in there. If you want to know how fast code runs on your system, you may compile and execute the test program.

Supported compilers:

  • Visual Studio 2015 Update 2 or later (/std:c++14)
  • GCC (-std=c++14)
  • Clang (-std=c++14)

Supported platforms: Anything, as long as it compiles (x86, x64, ARM, any OS). If the platform does not have SIMD implemented, it will fallback to non-vectorized code.

Errors: If the library does not like your compilers memory layout or other quirks, it's going to complain.

Clone this wiki locally