File tree Expand file tree Collapse file tree 6 files changed +13
-6
lines changed
Expand file tree Collapse file tree 6 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 11^.*\.Rproj$
22^\.Rproj\.user$
33^src/tbb/build/lib_.*$
4+ ^tests/testthat/pkg/RcppParallelTest/src/.*\.s?o$
5+ ^tests/testthat/pkg/RcppParallelTest/src/.*\.dll$
46^inst/lib$
57^.travis.yml
8+ ^README.md
69^doc$
710
811
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ Authors@R: c(
1515 person(family = "Microsoft", role = "cph")
1616 )
1717Description: High level functions for doing parallel programming with Rcpp.
18- For example, the parallelFor function can be used to convert the work of
19- a standard serial "for" loop into a parallel one and the parallelReduce
18+ For example, the parallelFor() function can be used to convert the work of
19+ a standard serial "for" loop into a parallel one and the parallelReduce()
2020 function can be used for accumulating aggregate or other values.
2121Suggests: Rcpp, testthat
2222SystemRequirements: GNU make, Windows: cmd.exe and cscript.exe
Original file line number Diff line number Diff line change 11RcppParallel 4.3.7
22------------------------------------------------------------------------
33
4- * Fix failure to compile with Rtools 3.3
5- * Fix failure to compile on OS X Snow Leopard R toolchain
64* Add tbbmalloc library
75* Add support for TBB on Solaris
6+ * Fix failure to compile on OS X Snow Leopard R toolchain
87
98RcppParallel 4.3.6
109------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1111
1212 The high level interface enables safe and robust parallel programming without
1313 direct manipulation of operating system threads. On Windows , OS X , and Linux
14- systems the underlying implementation is based on \ href { https : // www.threadingbuildingblocks.org / }{ Intel TBB } (Threading Building
14+ systems the underlying implementation is based on Intel TBB (Threading Building
1515 Blocks ). On other platforms a less - performant fallback implementation based on the
16- \ href { http : // tinythreadpp.bitsnbites.eu / }{ TinyThread } library is used.
16+ TinyThread library is used.
1717
1818 For additional documentation see the package website at : \href {http : // rcppcore.github.io / RcppParallel }{http : // rcppcore.github.io / RcppParallel }.
1919}
Original file line number Diff line number Diff line change 11context( " malloc" )
22
33test_that( " tbbmalloc works" , {
4+
5+ skip_on_cran()
6+
47 sourceCpp( " cpp/malloc.cpp" )
58})
69
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ context( "package" )
22
33test_that( " linking from a package works" , {
44
5+ skip_on_cran()
6+
57 templib <- tempfile()
68 dir.create(templib )
79
You can’t perform that action at this time.
0 commit comments