Skip to content

Commit c5d3290

Browse files
committed
Add travis and appveyor badges.
1 parent 2b1aa73 commit c5d3290

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## RcppParallel Package
22

3+
[![Travis-CI Build Status](https://travis-ci.org/jolars/RcppParallel.svg?branch=master)](https://travis-ci.org/jolars/RcppParallel)
4+
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/jolars/RcppParallel?branch=master&svg=true)](https://ci.appveyor.com/project/jolars/RcppParallel)
5+
36
High level functions for doing parallel programming with Rcpp. For example, the `parallelFor` function can be used to convert the work of a standard serial "for" loop into a parallel one and the `parallelReduce` function can be used for accumulating aggregate or other values.
47

58
The high level interface enables safe and robust parallel programming without direct manipulation of operating system threads. On Windows, OS X, and Linux systems the underlying implementation is based on [Intel TBB](https://www.threadingbuildingblocks.org/) (Threading Building Blocks). On other platforms a less-performant fallback implementation based on the [TinyThread](http://tinythreadpp.bitsnbites.eu/) library is used.

0 commit comments

Comments
 (0)