Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tbb to 2020 3 #2447

Merged
merged 12 commits into from
Mar 26, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
upgrading to TBB version 2020.3; modifying with new version number
  • Loading branch information
SteveBronder committed Mar 23, 2021
commit 7061735dfa6d54acb338de5f67d4a944becff7b4
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Stan Math depends on four libraries:
- Boost (version 1.75.0): [Boost Home Page](https://www.boost.org)
- Eigen (version 3.3.9: [Eigen Home Page](https://eigen.tuxfamily.org/index.php?title=Main_Page)
- SUNDIALS (version 5.6.1): [Sundials Home Page](https://computation.llnl.gov/projects/sundials/sundials-software)
- Intel TBB (version 2019_U8): [Intel TBB Home Page](https://www.threadingbuildingblocks.org)
- Intel TBB (version 2020.3): [Intel TBB Home Page](https://www.threadingbuildingblocks.org)

These are distributed under the `lib/` subdirectory. Only these
versions of the dependent libraries have been tested with Stan Math.
Expand Down Expand Up @@ -92,7 +92,7 @@ statements are given to the compiler and the necessary libraries are
linked: `~/stan-dev/math` and `~/stan-dev/math/lib/eigen_3.3.9` and
`~/stan-dev/math/lib/boost_1.75.0` and
`~/stan-dev/math/lib/sundials_5.6.1/include` and
`~/stan-dev/math/lib/tbb_2019_U8/include`. The
`~/stan-dev/math/lib/tbb_2020.3/include`. The
`~/stan-dev/math/lib/tbb` directory is created by the `math-libs`
makefile target automatically and contains the dynamically loaded
Intel TBB library. The flags `-Wl,-rpath,...` instruct the linker to
Expand Down
2 changes: 1 addition & 1 deletion make/libraries
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MATH ?=
BOOST ?= $(MATH)lib/boost_1.75.0
EIGEN ?= $(MATH)lib/eigen_3.3.9
OPENCL ?= $(MATH)lib/opencl_2.2.0
TBB ?= $(MATH)lib/tbb_2019_U8
TBB ?= $(MATH)lib/tbb_2020.3
SUNDIALS ?= $(MATH)lib/sundials_5.6.1
BENCHMARK ?= $(MATH)lib/benchmark_1.5.1
GTEST ?= $(BENCHMARK)/googletest/googletest
Expand Down