forked from RcppCore/RcppParallel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNEWS
More file actions
75 lines (54 loc) · 2.54 KB
/
NEWS
File metadata and controls
75 lines (54 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
RcppParallel 5.0.0
------------------------------------------------------------------------
* RcppParallel backend can now be customized with RCPP_PARALLEL_BACKEND
environment variable (supported values are 'tbb' and 'tinythread')
* Fixed issue when compiling RcppParallel on macOS Catalina
* Fixed issue when compiling RcppParallel with Rtools40
RcppParallel 4.4.4
------------------------------------------------------------------------
* Fixed an issue when compiling RcppParallel with clang-9 on Fedora
RcppParallel 4.4.3
------------------------------------------------------------------------
* Suppress gcc-9 warnings related -Wclass-memaccess
* Added TBB headers for serial TBB operations (#90, @mikejiang)
* Fixed row iterator constructor (#87, @wtianyi)
* Fixed compilation on FreeBSD
RcppParallel 4.4.2
------------------------------------------------------------------------
* Suppress gcc-8 warnings related to -Wclass-memaccess
* Use PKG_CXXFLAGS rather than PKG_CPPFLAGS
* Remove unused dependency on the BH package
RcppParallel 4.4.1
------------------------------------------------------------------------
* Ensure user-specified R configuration passed to TBB
* Work around warnings emitted by gcc 8
RcppParallel 4.4.0
------------------------------------------------------------------------
* Respect user-defined compiler settings (e.g. from ~/.R/Makevars).
* Remove TBB's attempts to suppress compiler diagnostics.
* Allow setting the number of threads to use via RCPP_PARALLEL_NUM_THREADS
environment variable.
* Update to TBB 2018 Update 1.
* Add native registration of compiled functions.
RcppParallel 4.3.20
------------------------------------------------------------------------
* Add support for Rtools 3.3 w/ GCC 4.9
RcppParallel 4.3.14
------------------------------------------------------------------------
* Add support for TBB on Solaris
* Fix failure to compile on OS X Snow Leopard R toolchain
* Add const and non-const operator[] for RMatrix class
RcppParallel 4.3.8
------------------------------------------------------------------------
* Add tbbmalloc library
* Correctly pass clang to TBB configure when R is using clang
RcppParallel 4.3.6
------------------------------------------------------------------------
* Support for TBB on Windows
RcppParallel 4.3.3
------------------------------------------------------------------------
* Update to TBB 4.3 (fixes clang compilation error in platform.h)
* Forward CXX to TBB Makefile
RcppParallel 4.2.5
------------------------------------------------------------------------
* Initial release