Skip to content

Commit

Permalink
Update conda installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Feb 7, 2017
1 parent dd0b812 commit 40d9c92
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,29 @@
[![Travis](https://travis-ci.org/QuantStack/xsimd.svg?branch=master)](https://travis-ci.org/QuantStack/xsimd)
[![Appveyor](https://ci.appveyor.com/api/projects/status/unk39xhu0wxmiif7?svg=true)](https://ci.appveyor.com/project/QuantStack/xsimd)
[![Documentation Status](http://readthedocs.org/projects/xsimd/badge/?version=latest)](https://xsimd.readthedocs.io/en/latest/?badge=latest)
[![Join the Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/QuantStack/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

C++ wrappers for SIMD intrinsics

## Introduction

Find out more about this implementation of C++ wrappers for SIMD intrinsics at the [The C++ Scientist](http://johanmabille.github.io/blog/archives/).

## Installation

`xsimd` is a header-only library. We provide a package for the conda package manager.

```bash
conda install -c conda-forge xsimd
```

Or you can directly install it from the sources:

```bash
cmake -D CMAKE_INSTALL_PREFIX=your_install_prefix
make install
```

## Building and Running the Tests

Building the tests requires the [GTest](https://github.com/google/googletest) testing framework and [cmake](https://cmake.org).
Expand Down
12 changes: 9 additions & 3 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ Installation

`xsimd` is a header-only library. We provide a package for the conda package manager.

```bash
conda install -c conda-forge xsimd
```
.. code::
conda install -c conda-forge xsimd
Or you can directly install it from the sources:

.. code::
cmake -D CMAKE_INSTALL_PREFIX=your_install_prefix
make install

0 comments on commit 40d9c92

Please sign in to comment.