matrixmultiply 0.1.15

General matrix multiplication of f32 and f64 matrices in Rust. Supports matrices with general strides. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize. `RUSTFLAGS="-C target-cpu=native"` is your friend here.
Documentation
language: rust
sudo: false

# run builds for all the trains (and more)
rust:
  - 1.12.0
  - stable
  - beta
  - nightly

# the main build
script:
  - |
      cargo build &&
      cargo test &&
      cargo test --release &&
      cargo doc &&
      cargo bench

branches:
  only:
    - master