rsimd

Make SIMD instruction sets easier to use
git clone git://git.meso-star.fr/rsimd.git
Log | Files | Refs | README | LICENSE

commit 3077263f58469011d02bf585cb66b1f48c6ffd89
parent e10386663ce9b5246fd8484d26a5cdbd50cce5e8
Author: vaplv <vaplv@free.fr>
Date:   Fri, 17 Oct 2014 19:22:35 +0200

Add a README file

Diffstat:
AREADME.md | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -0,0 +1,18 @@ +# RSIMD + +This C89 library defines an interface that encapsulates and make easier the +manipulation of SIMD instruction sets. It also provide a SIMD implementation +of linear algebrae operations for 3x3 and 4x4 matrices arranged in an `Array of +Structure`. Currently only the SSE2 instruction set is supported. + +## How to build + +The library uses [CMake](http://www.cmake.org) and the RCMake package to build. +It also depends on the RSys library. First, install the RCMake package and the +RSys library. Then, generate the project from the cmake/CMakeLists.txt file by +appending the RCMake lib/cmake and RSys install directories to the +`CMAKE_PREFIX_PATH` variable. The resulting project can be edited, built, +tested and installed as any CMake project. + +Note that by default the library is built as a static library. +