-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to oneTBB 2022.0 * use Rtools TBB if available * remove more bazel stuff * more * finishing up * tweaks * relax version constraint, just in case * more cleanup; remove GNU-isms * try cleaning up build dir after we're done * check for cmake * tweaks (support alternate build types) * more cleanup * fixup for macOS * make sure RcppParallel still builds with older R * try to support older R + Windows * more Windows fun * fixup
- Loading branch information
1 parent
69d50f6
commit fd8f510
Showing
804 changed files
with
57,515 additions
and
168,548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ src-i386 | |
src-x64 | ||
tbb.log | ||
|
||
src/tbb/build | ||
src/tbb/build-tbb | ||
|
||
R/tbb-autodetected.R | ||
src/install.libs.R | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,36 +3,37 @@ Type: Package | |
Title: Parallel Programming Tools for 'Rcpp' | ||
Version: 5.1.9.9000 | ||
Authors@R: c( | ||
person("Kevin", "Ushey", role = c("aut", "cre"), email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-2880-7407")), | ||
person("JJ", "Allaire", role = c("aut"), email = "[email protected]"), | ||
person("Romain", "Francois", role = c("aut", "cph")), | ||
person("Kevin", "Ushey", role = c("aut", "cre"), email = "[email protected]"), | ||
person("Gregory", "Vandenbrouck", role = "aut"), | ||
person("Marcus", "Geelnard", role = c("aut", "cph"), | ||
comment = "TinyThread library, https://tinythreadpp.bitsnbites.eu/"), | ||
person("Hamada S.", "Badr", | ||
email = "[email protected]", | ||
role = c("ctb"), | ||
person("Hamada S.", "Badr", email = "[email protected]", role = c("ctb"), | ||
comment = c(ORCID = "0000-0002-9808-2344")), | ||
person(family = "Posit, PBC", role = "cph"), | ||
person(family = "Intel", role = c("aut", "cph"), | ||
comment = "Intel TBB library, https://www.threadingbuildingblocks.org/"), | ||
person(family = "Microsoft", role = "cph") | ||
person("Dirk", "Eddelbuettel", role = c("aut"), email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6419-907X")), | ||
person(family = "Intel", role = c("aut", "cph"), comment = "oneTBB library"), | ||
person(family = "UXL Foundation", role = c("aut", "cph"), comment = "oneTBB library"), | ||
person(family = "Microsoft", role = "cph"), | ||
person(family = "Posit, PBC", role = "cph") | ||
) | ||
Description: High level functions for 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. | ||
Depends: R (>= 3.0.2) | ||
Depends: R (>= 3.6.0) | ||
Suggests: | ||
Rcpp, | ||
RUnit, | ||
knitr, | ||
rmarkdown | ||
Roxygen: list(markdown = TRUE) | ||
SystemRequirements: GNU make, Intel TBB, Windows: cmd.exe and cscript.exe, Solaris: g++ is required | ||
SystemRequirements: CMake (>= 3.5) | ||
License: GPL (>= 3) | ||
URL: https://rcppcore.github.io/RcppParallel/, https://github.com/RcppCore/RcppParallel | ||
BugReports: https://github.com/RcppCore/RcppParallel/issues | ||
Biarch: TRUE | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.3.2 | ||
Encoding: UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
|
||
# stubs that get overridden via configure script | ||
TBB_LIB <- "" | ||
TBB_INC <- "" | ||
TBB_ENABLED <- TRUE | ||
TBB_LIB <- "" | ||
TBB_INC <- "" | ||
|
||
TBB_NAME <- "tbb" | ||
TBB_MALLOC_NAME <- "tbbmalloc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
|
||
TBB_LIB <- "@TBB_LIB@" | ||
TBB_INC <- "@TBB_INC@" | ||
TBB_ENABLED <- @TBB_ENABLED@ | ||
TBB_LIB <- "@TBB_LIB@" | ||
TBB_INC <- "@TBB_INC@" | ||
|
||
TBB_NAME <- "@TBB_NAME@" | ||
TBB_MALLOC_NAME <- "@TBB_MALLOC_NAME@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Version: 1.0 | ||
ProjectId: 8e3d73b0-404c-42f5-b2ef-46f759f65dd4 | ||
|
||
RestoreWorkspace: No | ||
SaveWorkspace: No | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.