Skip to content

Commit 1d5d04c

Browse files
author
tbbdev
committed
Committing Intel(R) TBB 2017 Update 5 source code
1 parent dc82836 commit 1d5d04c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+436
-378
lines changed

CHANGES

+28-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22
The list of most significant changes made over time in
33
Intel(R) Threading Building Blocks (Intel(R) TBB).
44

5+
Intel TBB 2017 Update 5
6+
TBB_INTERFACE_VERSION == 9105
7+
8+
Changes (w.r.t. Intel TBB 2017 Update 4):
9+
10+
- Added support for Microsoft* Visual Studio* 2017.
11+
- Added graph/matmult example to demonstrate support for compute offload
12+
to Intel(R) Graphics Technology in the flow graph API.
13+
- The "compiler" build option now allows to specify a full path to the
14+
compiler.
15+
16+
Changes affecting backward compatibility:
17+
18+
- Constructors for many classes, including graph nodes, concurrent
19+
containers, thread-local containers, etc., are declared explicit and
20+
cannot be used for implicit conversions anymore.
21+
22+
Bugs fixed:
23+
24+
- Added a workaround for bug 16657 in the GNU C Library (glibc)
25+
affecting the debug version of tbb::mutex.
26+
- Fixed a crash in pool_identify() called for an object allocated in
27+
another thread.
28+
29+
------------------------------------------------------------------------
530
Intel TBB 2017 Update 4
631
TBB_INTERFACE_VERSION == 9104
732

@@ -2288,7 +2313,8 @@ Packaging:
22882313
are provided separately on Intel(R) Premier.
22892314

22902315
------------------------------------------------------------------------
2291-
Intel and Cilk are registered trademarks or trademarks of Intel Corporation or its
2292-
subsidiaries in the United States and other countries.
2316+
Intel, the Intel logo, Xeon, Intel Xeon Phi, and Cilk are registered
2317+
trademarks or trademarks of Intel Corporation or its subsidiaries in
2318+
the United States and other countries.
22932319

22942320
* Other names and brands may be claimed as the property of others.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Intel(R) Threading Building Blocks 2017 Update 4
2-
[![Stable release](https://img.shields.io/badge/version-2017_U4-green.svg)] (https://github.com/01org/tbb/releases/tag/2017_U4)
1+
# Intel(R) Threading Building Blocks 2017 Update 5
2+
[![Stable release](https://img.shields.io/badge/version-2017_U5-green.svg)] (https://github.com/01org/tbb/releases/tag/2017_U5)
33
[![Apache License Version 2.0](https://img.shields.io/badge/license-Apache_2.0-green.svg)](LICENSE)
44

55
Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write parallel C++ programs that take

build/Makefile.test

+8-6
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,14 @@ $(TWICE_LINKED_TESTS): LINK_FILES+=$(@:.$(TEST_EXT)=_secondary.$(OBJ))
100100
test_dynamic_link%.$(TEST_EXT): LINK_TBB.LIB =
101101
test_dynamic_link.$(TEST_EXT): LIBS += $(LIBDL)
102102

103-
TEST_BIG_OBJ = test_opencl_node.$(TEST_EXT) test_join_node.$(TEST_EXT) test_atomic.$(TEST_EXT)
104-
105-
ifeq (windows_windows,$(tbb_os)_$(target))
106-
ifneq (gcc,$(compiler))
107-
$(TEST_BIG_OBJ): override CXXFLAGS += /bigobj
108-
endif
103+
# Resolving issue with the number of sections that an object file can contain
104+
ifneq (,$(BIGOBJ_KEY))
105+
TEST_BIGOBJ = test_opencl_node.$(TEST_EXT) \
106+
test_join_node.$(TEST_EXT) \
107+
test_atomic.$(TEST_EXT) \
108+
test_concurrent_unordered_set.$(TEST_EXT) \
109+
test_concurrent_unordered_map.$(TEST_EXT)
110+
$(TEST_BIGOBJ): override CXXFLAGS += $(BIGOBJ_KEY)
109111
endif
110112

111113
# TODO: remove repetition of .$(TEST_EXT) in the list bellow

build/common.inc

+8-8
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ endif
4545

4646
ifdef cpp0x
4747
$(warning "Warning: deprecated cpp0x=$(cpp0x) is used, stdver must be used instead. Building in stdver=c++0x mode.")
48-
export stdver ?= c++0x
48+
export stdver?=c++0x
4949
override cpp0x=
5050
endif
5151

@@ -54,13 +54,13 @@ ifneq (,$(stdver))
5454
$(warning "Warning: unexpected stdver=$(stdver) is used.")
5555
endif
5656

57-
CXX_STD_FLAGS = -std=$(stdver) -D_TBB_CPP0X
57+
CXX_STD_FLAGS=-std=$(stdver) -D_TBB_CPP0X
5858
endif
5959

6060
# The requested option is added unconditionally.
6161
# If it is not supported, a compiler warning or error is expected.
6262
# Note that CXX_STD_FLAGS can be changed in <os>.<compiler>.inc.
63-
CXX_ONLY_FLAGS += $(CXX_STD_FLAGS)
63+
CXX_ONLY_FLAGS+=$(CXX_STD_FLAGS)
6464

6565
ifeq (,$(wildcard $(tbb_root)/build/$(tbb_os).inc))
6666
$(error "$(tbb_os)" is not supported. Add build/$(tbb_os).inc file with os-specific settings )
@@ -100,23 +100,23 @@ cross_cfg = $(if $(crosstest),$(call flip_cfg,$(1)),$(1))
100100
# Setting default configuration to release
101101
cfg?=release
102102

103+
compiler_name=$(notdir $(compiler))
103104
ifdef BUILDING_PHASE
104-
105105
ifndef target
106106
target:=$(tbb_os)
107107
endif
108108
# process host/target compiler-dependent build configuration
109-
ifeq (,$(wildcard $(tbb_root)/build/$(target).$(compiler).inc))
110-
$(error "$(compiler)" is not supported on $(target). Add build/$(target).$(compiler).inc file with compiler-specific settings. )
109+
ifeq (,$(wildcard $(tbb_root)/build/$(target).$(compiler_name).inc))
110+
$(error "$(compiler_name)" is not supported on $(target). Add build/$(target).$(compiler_name).inc file with compiler-specific settings. )
111111
endif
112-
include $(tbb_root)/build/$(target).$(compiler).inc
112+
include $(tbb_root)/build/$(target).$(compiler_name).inc
113113
endif
114114

115115
ifneq ($(BUILDING_PHASE),1)
116116
# definitions for top-level Makefiles
117117
origin_build_dir:=$(origin tbb_build_dir)
118118
tbb_build_dir?=$(tbb_root)$(SLASH)build
119-
export tbb_build_prefix?=$(tbb_os)_$(arch)_$(compiler)_$(runtime)$(CPF_SUFFIX)
119+
export tbb_build_prefix?=$(tbb_os)_$(arch)_$(compiler_name)_$(runtime)$(CPF_SUFFIX)
120120
work_dir=$(tbb_build_dir)$(SLASH)$(tbb_build_prefix)
121121
endif # BUILDING_PHASE != 1
122122

0 commit comments

Comments
 (0)