You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1595 lines
64 KiB

  1. ------------------------------------------------------------------------
  2. The list of most significant changes made over time in
  3. Intel(R) Threading Building Blocks (Intel(R) TBB).
  4. ------------------------------------------------------------------------
  5. Intel TBB 4.2 Update 3
  6. TBB_INTERFACE_VERSION == 7003
  7. - Added support for Microsoft* Visual Studio* 2013.
  8. - Improved Microsoft* PPL-compatible form of parallel_for for better
  9. support of auto-vectorization.
  10. - Added a new example for cancellation and reset in the flow graph:
  11. Kohonen self-organizing map (examples/graph/som).
  12. - Various improvements in source code, tests, and makefiles.
  13. Bugs fixed:
  14. - Added dynamic replacement of _aligned_msize() previously missed.
  15. - Fixed task_group::run_and_wait() to throw invalid_multiple_scheduling
  16. exception if the specified task handle is already scheduled.
  17. Open-source contributions integrated:
  18. - A fix for ARM* processors by Steve Capper.
  19. - Improvements in std::swap calls by Robert Maynard.
  20. ------------------------------------------------------------------------
  21. Intel TBB 4.2 Update 2
  22. TBB_INTERFACE_VERSION == 7002
  23. Changes (w.r.t. Intel TBB 4.2 Update 1):
  24. - Enable C++11 features for Microsoft* Visual Studio* 2013 Preview.
  25. - Added a test for compatibility of TBB containers with C++11
  26. range-based for loop.
  27. Changes affecting backward compatibility:
  28. - Internal layout changed for class tbb::flow::limiter_node.
  29. Bugs fixed:
  30. - When building for Intel(R) Xeon Phi(tm) coprocessor, TBB programs
  31. no longer require explicit linking with librt and libpthread.
  32. Open-source contributions integrated:
  33. - Fixes for ARM* processors by Steve Capper, Leif Lindholm
  34. and Steven Noonan.
  35. - Support for Clang on Linux by Raf Schietekat.
  36. - Typo correction in scheduler.cpp by Julien Schueller.
  37. ------------------------------------------------------------------------
  38. Intel TBB 4.2 Update 1
  39. TBB_INTERFACE_VERSION == 7001
  40. Changes (w.r.t. Intel TBB 4.2):
  41. - Added project files for Microsoft* Visual Studio* 2010.
  42. - Initial support of Microsoft* Visual Studio* 2013 Preview.
  43. - Enable C++11 features available in Intel(R) C++ Compiler 14.0.
  44. - scalable_allocation_mode(TBBMALLOC_SET_SOFT_HEAP_LIMIT, <size>) can be
  45. used to urge releasing memory from tbbmalloc internal buffers when
  46. the given limit is exceeded.
  47. Community Preview Features:
  48. - Class task_arena no longer requires linking with a preview library,
  49. though still remains a community preview feature.
  50. - The method task_arena::wait_until_empty() is removed.
  51. - The method task_arena::current_slot() now returns -1 if
  52. the task scheduler is not initialized in the thread.
  53. Changes affecting backward compatibility:
  54. - Because of changes in internal layout of graph nodes, the namespace
  55. interface number of flow::graph has been incremented from 6 to 7.
  56. Bugs fixed:
  57. - Fixed a race in lazy initialization of task_arena.
  58. - Fixed flow::graph::reset() to prevent situations where tasks would be
  59. spawned in the process of resetting the graph to its initial state.
  60. - Fixed decrement bug in limiter_node.
  61. - Fixed a race in arc deletion in the flow graph.
  62. Open-source contributions integrated:
  63. - Improved support for IBM* Blue Gene* by Raf Schietekat.
  64. ------------------------------------------------------------------------
  65. Intel TBB 4.2
  66. TBB_INTERFACE_VERSION == 7000
  67. Changes (w.r.t. Intel TBB 4.1 Update 4):
  68. - Added speculative_spin_mutex, which uses Intel(R) Transactional
  69. Synchronization Extensions when they are supported by hardware.
  70. - Binary files linked with libc++ (the C++ standard library in Clang)
  71. were added on OS X*.
  72. - For OS X* exact exception propagation is supported with Clang;
  73. it requires use of libc++ and corresponding Intel TBB binaries.
  74. - Support for C++11 initilizer lists in constructor and assigment
  75. has been added to concurrent_hash_map, concurrent_unordered_set,
  76. concurrent_unordered_multiset, concurrent_unordered_map,
  77. concurrent_unordered_multimap.
  78. - The memory allocator may now clean its per-thread memory caches
  79. when it cannot get more memory.
  80. - Added the scalable_allocation_command() function for on-demand
  81. cleaning of internal memory caches.
  82. - Reduced the time overhead for freeing memory objects smaller than ~8K.
  83. - Simplified linking with the debug library for applications that use
  84. Intel TBB in code offloaded to Intel(R) Xeon Phi(tm) coprocessors.
  85. See an example in
  86. examples/GettingStarted/sub_string_finder/Makefile.
  87. - Various improvements in source code, scripts and makefiles.
  88. Changes affecting backward compatibility:
  89. - tbb::flow::graph has been modified to spawn its tasks;
  90. the old behaviour (task enqueuing) is deprecated. This change may
  91. impact applications that expected a flow graph to make progress
  92. without calling wait_for_all(), which is no longer guaranteed. See
  93. the documentation for more details.
  94. - Changed the return values of the scalable_allocation_mode() function.
  95. Bugs fixed:
  96. - Fixed a leak of parallel_reduce body objects when execution is
  97. cancelled or an exception is thrown, as suggested by Darcy Harrison.
  98. - Fixed a race in the task scheduler which can lower the effective
  99. priority despite the existence of higher priority tasks.
  100. - On Linux an error during destruction of the internal thread local
  101. storage no longer results in an exception.
  102. Open-source contributions integrated:
  103. - Fixed task_group_context state propagation to unrelated context trees
  104. by Raf Schietekat.
  105. ------------------------------------------------------------------------
  106. Intel TBB 4.1 Update 4
  107. TBB_INTERFACE_VERSION == 6105
  108. Changes (w.r.t. Intel TBB 4.1 Update 3):
  109. - Use /volatile:iso option with VS 2012 to disable extended
  110. semantics for volatile variables.
  111. - Various improvements in affinity_partitioner, scheduler,
  112. tests, examples, makefiles.
  113. - Concurrent_priority_queue class now supports initialization/assignment
  114. via C++11 initializer list feature (std::initializer_list<T>).
  115. Bugs fixed:
  116. - Fixed more possible stalls in concurrent invocations of
  117. task_arena::execute(), especially waiting for enqueued tasks.
  118. - Fixed requested number of workers for task_arena(P,0).
  119. - Fixed interoperability with Intel(R) VTune(TM) Amplifier XE in
  120. case of using task_arena::enqueue() from a terminating thread.
  121. Open-source contributions integrated:
  122. - Type fixes, cleanups, and code beautification by Raf Schietekat.
  123. - Improvements in atomic operations for big endian platforms
  124. by Raf Schietekat.
  125. ------------------------------------------------------------------------
  126. Intel TBB 4.1 Update 3
  127. TBB_INTERFACE_VERSION == 6103
  128. Changes (w.r.t. Intel TBB 4.1 Update 2):
  129. - Binary files for Android* applications were added to the Linux* OS
  130. package.
  131. - Binary files for Windows Store* applications were added to the
  132. Windows* OS package.
  133. - Exact exception propagation (exception_ptr) support on Linux OS is
  134. now turned on by default for GCC 4.4 and higher.
  135. - Stopped implicit use of large memory pages by tbbmalloc (Linux-only).
  136. Now use of large pages must be explicitly enabled with
  137. scalable_allocation_mode() function or TBB_MALLOC_USE_HUGE_PAGES
  138. environment variable.
  139. Community Preview Features:
  140. - Extended class task_arena constructor and method initialize() to
  141. allow some concurrency to be reserved strictly for application
  142. threads.
  143. - New methods terminate() and is_active() were added to class
  144. task_arena.
  145. Bugs fixed:
  146. - Fixed initialization of hashing helper constant in the hash
  147. containers.
  148. - Fixed possible stalls in concurrent invocations of
  149. task_arena::execute() when no worker thread is available to make
  150. progress.
  151. - Fixed incorrect calculation of hardware concurrency in the presence
  152. of inactive processor groups, particularly on systems running
  153. Windows* 8 and Windows* Server 2012.
  154. Open-source contributions integrated:
  155. - The fix for the GUI examples on OS X* systems by Raf Schietekat.
  156. - Moved some power-of-2 calculations to functions to improve readability
  157. by Raf Schietekat.
  158. - C++11/Clang support improvements by arcata.
  159. - ARM* platform isolation layer by Steve Capper, Leif Lindholm, Leo Lara
  160. (ARM).
  161. ------------------------------------------------------------------------
  162. Intel TBB 4.1 Update 2
  163. TBB_INTERFACE_VERSION == 6102
  164. Changes (w.r.t. Intel TBB 4.1 Update 1):
  165. - Objects up to 128 MB are now cached by the tbbmalloc. Previously
  166. the threshold was 8MB. Objects larger than 128 MB are still
  167. processed by direct OS calls.
  168. - concurrent_unordered_multiset and concurrent_unordered_multimap
  169. have been added, based on Microsoft* PPL prototype.
  170. - Ability to value-initialize a tbb::atomic<T> variable on construction
  171. in C++11, with const expressions properly supported.
  172. Community Preview Features:
  173. - Added a possibility to wait until all worker threads terminate.
  174. This is necessary before calling fork() from an application.
  175. Bugs fixed:
  176. - Fixed data race in tbbmalloc that might lead to memory leaks
  177. for large object allocations.
  178. - Fixed task_arena::enqueue() to use task_group_context of target arena.
  179. - Improved implementation of 64 bit atomics on ia32.
  180. ------------------------------------------------------------------------
  181. Intel TBB 4.1 Update 1
  182. TBB_INTERFACE_VERSION == 6101
  183. Changes (w.r.t. Intel TBB 4.1):
  184. - concurrent_vector class now supports initialization/assignment
  185. via C++11 initializer list feature (std::initializer_list<T>)
  186. - Added implementation of the platform isolation layer based on
  187. Intel compiler atomic built-ins; it is supposed to work on
  188. any platform supported by compiler version 12.1 and newer.
  189. - Using GetNativeSystemInfo() instead of GetSystemInfo() to support
  190. more than 32 processors for 32-bit applications under WOW64.
  191. - The following form of parallel_for:
  192. parallel_for(first, last, [step,] f[, context]) now accepts an
  193. optional partitioner parameter after the function f.
  194. Backward-incompatible API changes:
  195. - The library no longer injects tuple in to namespace std.
  196. In previous releases, tuple was injected into namespace std by
  197. flow_graph.h when std::tuple was not available. In this release,
  198. flow_graph.h now uses tbb::flow::tuple. On platforms where
  199. std::tuple is available, tbb::flow::tuple is typedef'ed to
  200. std::tuple. On all other platforms, tbb::flow::tuple provides
  201. a subset of the functionality defined by std::tuple. Users of
  202. flow_graph.h may need to change their uses of std::tuple to
  203. tbb::flow::tuple to ensure compatibility with non-C++11 compliant
  204. compilers.
  205. Bugs fixed:
  206. - Fixed local observer to be able to override propagated CPU state and
  207. to provide correct value of task_arena::current_slot() in callbacks.
  208. ------------------------------------------------------------------------
  209. Intel TBB 4.1
  210. TBB_INTERFACE_VERSION == 6100
  211. Changes (w.r.t. Intel TBB 4.0 Update 5):
  212. - _WIN32_WINNT must be set to 0x0501 or greater in order to use TBB
  213. on Microsoft* Windows*.
  214. - parallel_deterministic_reduce template function is fully supported.
  215. - TBB headers can be used with C++0x/C++11 mode (-std=c++0x) of GCC
  216. and Intel(R) Compiler.
  217. - C++11 std::make_exception_ptr is used where available, instead of
  218. std::copy_exception from earlier C++0x implementations.
  219. - Improvements in the TBB allocator to reduce extra memory consumption.
  220. - Partial refactoring of the task scheduler data structures.
  221. - TBB examples allow more flexible specification of the thread number,
  222. including arithmetic and geometric progression.
  223. Bugs fixed:
  224. - On Linux & OS X*, pre-built TBB binaries do not yet support exact
  225. exception propagation via C++11 exception_ptr. To prevent run time
  226. errors, by default TBB headers disable exact exception propagation
  227. even if the C++ implementation provides exception_ptr.
  228. Community Preview Features:
  229. - Added: class task_arena, for work submission by multiple application
  230. threads with thread-independent control of concurrency level.
  231. - Added: task_scheduler_observer can be created as local to a master
  232. thread, to observe threads that work on behalf of that master.
  233. Local observers may have new on_scheduler_leaving() callback.
  234. ------------------------------------------------------------------------
  235. Intel TBB 4.0 Update 5
  236. TBB_INTERFACE_VERSION == 6005
  237. Changes (w.r.t. Intel TBB 4.0 Update 4):
  238. - Parallel pipeline optimization (directly storing small objects in the
  239. interstage data buffers) limited to trivially-copyable types for
  240. C++11 and a short list of types for earlier compilers.
  241. - _VARIADIC_MAX switch is honored for TBB tuple implementation
  242. and flow::graph nodes based on tuple.
  243. - Support of Cocoa framework was added to the GUI examples on OS X*
  244. systems.
  245. Bugs fixed:
  246. - Fixed a tv_nsec overflow bug in condition_variable::wait_for.
  247. - Fixed execution order of enqueued tasks with different priorities.
  248. - Fixed a bug with task priority changes causing lack of progress
  249. for fire-and-forget tasks when TBB was initialized to use 1 thread.
  250. - Fixed duplicate symbol problem when linking multiple compilation
  251. units that include flow_graph.h on VC 10.
  252. ------------------------------------------------------------------------
  253. Intel TBB 4.0 Update 4
  254. TBB_INTERFACE_VERSION == 6004
  255. Changes (w.r.t. Intel TBB 4.0 Update 3):
  256. - The TBB memory allocator transparently supports large pages on Linux.
  257. - A new flow_graph example, logic_sim, was added.
  258. - Support for DirectX* 9 was added to GUI examples.
  259. Community Preview Features:
  260. - Added: aggregator, a new concurrency control mechanism.
  261. Bugs fixed:
  262. - The abort operation on concurrent_bounded_queue now leaves the queue
  263. in a reusable state. If a bad_alloc or bad_last_alloc exception is
  264. thrown while the queue is recovering from an abort, that exception
  265. will be reported instead of user_abort on the thread on which it
  266. occurred, and the queue will not be reusable.
  267. - Steal limiting heuristic fixed to avoid premature stealing disabling
  268. when large amount of __thread data is allocated on thread stack.
  269. - Fixed a low-probability leak of arenas in the task scheduler.
  270. - In STL-compatible allocator classes, the method construct() was fixed
  271. to comply with C++11 requirements.
  272. - Fixed a bug that prevented creation of fixed-size memory pools
  273. smaller than 2M.
  274. - Significantly reduced the amount of warnings from various compilers.
  275. Open-source contributions integrated:
  276. - Multiple improvements by Raf Schietekat.
  277. - Basic support for Clang on OS X* by Blas Rodriguez Somoza.
  278. - Fixes for warnings and corner-case bugs by Blas Rodriguez Somoza
  279. and Edward Lam.
  280. ------------------------------------------------------------------------
  281. Intel TBB 4.0 Update 3
  282. TBB_INTERFACE_VERSION == 6003
  283. Changes (w.r.t. Intel TBB 4.0 Update 2):
  284. - Modifications to the low-level API for memory pools:
  285. added support for aligned allocations;
  286. pool policies reworked to allow backward-compatible extensions;
  287. added a policy to not return memory space till destruction;
  288. pool_reset() does not return memory space anymore.
  289. - Class tbb::flow::graph_iterator added to iterate over all nodes
  290. registered with a graph instance.
  291. - multioutput_function_node has been renamed multifunction_node.
  292. multifunction_node and split_node are now fully-supported features.
  293. - For the tagged join node, the policy for try_put of an item with
  294. already existing tag has been defined: the item will be rejected.
  295. - Matching the behavior on Windows, on other platforms the optional
  296. shared libraries (libtbbmalloc, libirml) now are also searched
  297. only in the directory where libtbb is located.
  298. - The platform isolation layer based on GCC built-ins is extended.
  299. Backward-incompatible API changes:
  300. - a graph reference parameter is now required to be passed to the
  301. constructors of the following flow graph nodes: overwrite_node,
  302. write_once_node, broadcast_node, and the CPF or_node.
  303. - the following tbb::flow node methods and typedefs have been renamed:
  304. Old New
  305. join_node and or_node:
  306. inputs() -> input_ports()
  307. input_ports_tuple_type -> input_ports_type
  308. multifunction_node and split_node:
  309. ports_type -> output_ports_type
  310. Bugs fixed:
  311. - Not all logical processors were utilized on systems with more than
  312. 64 cores split by Windows into several processor groups.
  313. ------------------------------------------------------------------------
  314. Intel TBB 4.0 Update 2 commercial-aligned release
  315. TBB_INTERFACE_VERSION == 6002
  316. Changes (w.r.t. Intel TBB 4.0 Update 1 commercial-aligned release):
  317. - concurrent_bounded_queue now has an abort() operation that releases
  318. threads involved in pending push or pop operations. The released
  319. threads will receive a tbb::user_abort exception.
  320. - Added Community Preview Feature: concurrent_lru_cache container,
  321. a concurrent implementation of LRU (least-recently-used) cache.
  322. Bugs fixed:
  323. - fixed a race condition in the TBB scalable allocator.
  324. - concurrent_queue counter wraparound bug was fixed, which occurred when
  325. the number of push and pop operations exceeded ~>4 billion on IA32.
  326. - fixed races in the TBB scheduler that could put workers asleep too
  327. early, especially in presense of affinitized tasks.
  328. ------------------------------------------------------------------------
  329. Intel TBB 4.0 Update 1 commercial-aligned release
  330. TBB_INTERFACE_VERSION == 6000 (forgotten to increment)
  331. Changes (w.r.t. Intel TBB 4.0 commercial-aligned release):
  332. - Memory leaks fixed in binpack example.
  333. - Improvements and fixes in the TBB allocator.
  334. ------------------------------------------------------------------------
  335. Intel TBB 4.0 commercial-aligned release
  336. TBB_INTERFACE_VERSION == 6000
  337. Changes (w.r.t. Intel TBB 3.0 Update 8 commercial-aligned release):
  338. - concurrent_priority_queue is now a fully supported feature.
  339. Capacity control methods were removed.
  340. - Flow graph is now a fully supported feature.
  341. - A new memory backend has been implemented in the TBB allocator.
  342. It can reuse freed memory for both small and large objects, and
  343. returns unused memory blocks to the OS more actively.
  344. - Improved partitioning algorithms for parallel_for and parallel_reduce
  345. to better handle load imbalance.
  346. - The convex_hull example has been refactored for reproducible
  347. performance results.
  348. - The major interface version has changed from 5 to 6.
  349. Deprecated interfaces might be removed in future releases.
  350. Community Preview Features:
  351. - Added: serial subset, i.e. sequential implementations of TBB generic
  352. algorithms (currently, only provided for parallel_for).
  353. - Preview of new flow graph nodes:
  354. or_node (accepts multiple inputs, forwards each input separately
  355. to all successors),
  356. split_node (accepts tuples, and forwards each element of a tuple
  357. to a corresponding successor), and
  358. multioutput_function_node (accepts one input, and passes the input
  359. and a tuple of output ports to the function body to support outputs
  360. to multiple successors).
  361. - Added: memory pools for more control on memory source, grouping,
  362. and collective deallocation.
  363. ------------------------------------------------------------------------
  364. Intel TBB 3.0 Update 8 commercial-aligned release
  365. TBB_INTERFACE_VERSION == 5008
  366. Changes (w.r.t. Intel TBB 3.0 Update 7 commercial-aligned release):
  367. - Task priorities become an official feature of TBB,
  368. not community preview as before.
  369. - Atomics API extended, and implementation refactored.
  370. - Added task::set_parent() method.
  371. - Added concurrent_unordered_set container.
  372. Open-source contributions integrated:
  373. - PowerPC support by Raf Schietekat.
  374. - Fix of potential task pool overrun and other improvements
  375. in the task scheduler by Raf Schietekat.
  376. - Fix in parallel_for_each to work with std::set in Visual* C++ 2010.
  377. Community Preview Features:
  378. - Graph community preview feature was renamed to flow graph.
  379. Multiple improvements in the implementation.
  380. Binpack example was added for the feature.
  381. - A number of improvements to concurrent_priority_queue.
  382. Shortpath example was added for the feature.
  383. - TBB runtime loaded functionality was added (Windows*-only).
  384. It allows to specify which versions of TBB should be used,
  385. as well as to set directories for the library search.
  386. - parallel_deterministic_reduce template function was added.
  387. ------------------------------------------------------------------------
  388. Intel TBB 3.0 Update 7 commercial-aligned release
  389. TBB_INTERFACE_VERSION == 5006 (forgotten to increment)
  390. Changes (w.r.t. Intel TBB 3.0 Update 6 commercial-aligned release):
  391. - Added implementation of the platform isolation layer based on
  392. GCC atomic built-ins; it is supposed to work on any platform
  393. where GCC has these built-ins.
  394. Community Preview Features:
  395. - Graph's dining_philosophers example added.
  396. - A number of improvements to graph and concurrent_priority_queue.
  397. ------------------------------------------------------------------------
  398. Intel TBB 3.0 Update 6 commercial-aligned release
  399. TBB_INTERFACE_VERSION == 5006
  400. Changes (w.r.t. Intel TBB 3.0 Update 5 commercial-aligned release):
  401. - Added Community Preview feature: task and task group priority, and
  402. Fractal example demonstrating it.
  403. - parallel_pipeline optimized for data items of small and large sizes.
  404. - Graph's join_node is now parametrized with a tuple of up to 10 types.
  405. - Improved performance of concurrent_priority_queue.
  406. Open-source contributions integrated:
  407. - Initial NetBSD support by Aleksej Saushev.
  408. Bugs fixed:
  409. - Failure to enable interoperability with Intel(R) Cilk(tm) Plus runtime
  410. library, and a crash caused by invoking the interoperability layer
  411. after one of the libraries was unloaded.
  412. - Data race that could result in concurrent_unordered_map structure
  413. corruption after call to clear() method.
  414. - Stack corruption caused by PIC version of 64-bit CAS compiled by Intel
  415. compiler on Linux.
  416. - Inconsistency of exception propagation mode possible when application
  417. built with Microsoft* Visual Studio* 2008 or earlier uses TBB built
  418. with Microsoft* Visual Studio* 2010.
  419. - Affinitizing master thread to a subset of available CPUs after TBB
  420. scheduler was initialized tied all worker threads to the same CPUs.
  421. - Method is_stolen_task() always returned 'false' for affinitized tasks.
  422. - write_once_node and overwrite_node did not immediately send buffered
  423. items to successors
  424. ------------------------------------------------------------------------
  425. Intel TBB 3.0 Update 5 commercial-aligned release
  426. TBB_INTERFACE_VERSION == 5005
  427. Changes (w.r.t. Intel TBB 3.0 Update 4 commercial-aligned release):
  428. - Added Community Preview feature: graph.
  429. - Added automatic propagation of master thread FPU settings to
  430. TBB worker threads.
  431. - Added a public function to perform a sequentially consistent full
  432. memory fence: tbb::atomic_fence() in tbb/atomic.h.
  433. Bugs fixed:
  434. - Data race that could result in scheduler data structures corruption
  435. when using fire-and-forget tasks.
  436. - Potential referencing of destroyed concurrent_hash_map element after
  437. using erase(accessor&A) method with A acquired as const_accessor.
  438. - Fixed a correctness bug in the convex hull example.
  439. Open-source contributions integrated:
  440. - Patch for calls to internal::atomic_do_once() by Andrey Semashev.
  441. ------------------------------------------------------------------------
  442. Intel TBB 3.0 Update 4 commercial-aligned release
  443. TBB_INTERFACE_VERSION == 5004
  444. Changes (w.r.t. Intel TBB 3.0 Update 3 commercial-aligned release):
  445. - Added Community Preview feature: concurrent_priority_queue.
  446. - Fixed library loading to avoid possibility for remote code execution,
  447. see http://www.microsoft.com/technet/security/advisory/2269637.mspx.
  448. - Added support of more than 64 cores for appropriate Microsoft*
  449. Windows* versions. For more details, see
  450. http://msdn.microsoft.com/en-us/library/dd405503.aspx.
  451. - Default number of worker threads is adjusted in accordance with
  452. process affinity mask.
  453. Bugs fixed:
  454. - Calls of scalable_* functions from inside the allocator library
  455. caused issues if the functions were overridden by another module.
  456. - A crash occurred if methods run() and wait() were called concurrently
  457. for an empty tbb::task_group (1736).
  458. - The tachyon example exhibited build problems associated with
  459. bug 554339 on Microsoft* Visual Studio* 2010. Project files were
  460. modified as a partial workaround to overcome the problem. See
  461. http://connect.microsoft.com/VisualStudio/feedback/details/554339.
  462. ------------------------------------------------------------------------
  463. Intel TBB 3.0 Update 3 commercial-aligned release
  464. TBB_INTERFACE_VERSION == 5003
  465. Changes (w.r.t. Intel TBB 3.0 Update 2 commercial-aligned release):
  466. - cache_aligned_allocator class reworked to use scalable_aligned_malloc.
  467. - Improved performance of count() and equal_range() methods
  468. in concurrent_unordered_map.
  469. - Improved implementation of 64-bit atomic loads and stores on 32-bit
  470. platforms, including compilation with VC 7.1.
  471. - Added implementation of atomic operations on top of OSAtomic API
  472. provided by OS X*.
  473. - Removed gratuitous try/catch blocks surrounding thread function calls
  474. in tbb_thread.
  475. - Xcode* projects were added for sudoku and game_of_life examples.
  476. - Xcode* projects were updated to work without TBB framework.
  477. Bugs fixed:
  478. - Fixed a data race in task scheduler destruction that on rare occasion
  479. could result in memory corruption.
  480. - Fixed idle spinning in thread bound filters in tbb::pipeline (1670).
  481. Open-source contributions integrated:
  482. - MinGW-64 basic support by brsomoza (partially).
  483. - Patch for atomic.h by Andrey Semashev.
  484. - Support for AIX & GCC on PowerPC by Giannis Papadopoulos.
  485. - Various improvements by Raf Schietekat.
  486. ------------------------------------------------------------------------
  487. Intel TBB 3.0 Update 2 commercial-aligned release
  488. TBB_INTERFACE_VERSION == 5002
  489. Changes (w.r.t. Intel TBB 3.0 Update 1 commercial-aligned release):
  490. - Destructor of tbb::task_group class throws missing_wait exception
  491. if there are tasks running when it is invoked.
  492. - Interoperability layer with Intel Cilk Plus runtime library added
  493. to protect TBB TLS in case of nested usage with Intel Cilk Plus.
  494. - Compilation fix for dependent template names in concurrent_queue.
  495. - Memory allocator code refactored to ease development and maintenance.
  496. Bugs fixed:
  497. - Improved interoperability with other Intel software tools on Linux in
  498. case of dynamic replacement of memory allocator (1700)
  499. - Fixed install issues that prevented installation on
  500. Mac OS* X 10.6.4 (1711).
  501. ------------------------------------------------------------------------
  502. Intel TBB 3.0 Update 1 commercial-aligned release
  503. TBB_INTERFACE_VERSION == 5000 (forgotten to increment)
  504. Changes (w.r.t. Intel TBB 3.0 commercial-aligned release):
  505. - Decreased memory fragmentation by allocations bigger than 8K.
  506. - Lazily allocate worker threads, to avoid creating unnecessary stacks.
  507. Bugs fixed:
  508. - TBB allocator used much more memory than malloc (1703) - see above.
  509. - Deadlocks happened in some specific initialization scenarios
  510. of the TBB allocator (1701, 1704).
  511. - Regression in enumerable_thread_specific: excessive requirements
  512. for object constructors.
  513. - A bug in construction of parallel_pipeline filters when body instance
  514. was a temporary object.
  515. - Incorrect usage of memory fences on PowerPC and XBOX360 platforms.
  516. - A subtle issue in task group context binding that could result
  517. in cancelation signal being missed by nested task groups.
  518. - Incorrect construction of concurrent_unordered_map if specified
  519. number of buckets is not power of two.
  520. - Broken count() and equal_range() of concurrent_unordered_map.
  521. - Return type of postfix form of operator++ for hash map's iterators.
  522. ------------------------------------------------------------------------
  523. Intel TBB 3.0 commercial-aligned release
  524. TBB_INTERFACE_VERSION == 5000
  525. Changes (w.r.t. Intel TBB 2.2 Update 3 commercial-aligned release):
  526. - All open-source-release changes down to TBB 2.2 U3 below
  527. were incorporated into this release.
  528. ------------------------------------------------------------------------
  529. 20100406 open-source release
  530. Changes (w.r.t. 20100310 open-source release):
  531. - Added support for Microsoft* Visual Studio* 2010, including binaries.
  532. - Added a PDF file with recommended Design Patterns for TBB.
  533. - Added parallel_pipeline function and companion classes and functions
  534. that provide a strongly typed lambda-friendly pipeline interface.
  535. - Reworked enumerable_thread_specific to use a custom implementation of
  536. hash map that is more efficient for ETS usage models.
  537. - Added example for class task_group; see examples/task_group/sudoku.
  538. - Removed two examples, as they were long outdated and superceded:
  539. pipeline/text_filter (use pipeline/square);
  540. parallel_while/parallel_preorder (use parallel_do/parallel_preorder).
  541. - PDF documentation updated.
  542. - Other fixes and changes in code, tests, and examples.
  543. Bugs fixed:
  544. - Eliminated build errors with MinGW32.
  545. - Fixed post-build step and other issues in VS projects for examples.
  546. - Fixed discrepancy between scalable_realloc and scalable_msize that
  547. caused crashes with malloc replacement on Windows.
  548. ------------------------------------------------------------------------
  549. 20100310 open-source release
  550. Changes (w.r.t. Intel TBB 2.2 Update 3 commercial-aligned release):
  551. - Version macros changed in anticipation of a future release.
  552. - Directory structure aligned with Intel(R) C++ Compiler;
  553. now TBB binaries reside in <arch>/<os_key>/[bin|lib]
  554. (in TBB 2.x, it was [bin|lib]/<arch>/<os_key>).
  555. - Visual Studio projects changed for examples: instead of separate set
  556. of files for each VS version, now there is single 'msvs' directory
  557. that contains workspaces for MS C++ compiler (<example>_cl.sln) and
  558. Intel C++ compiler (<example>_icl.sln). Works with VS 2005 and above.
  559. - The name versioning scheme for backward compatibility was improved;
  560. now compatibility-breaking changes are done in a separate namespace.
  561. - Added concurrent_unordered_map implementation based on a prototype
  562. developed in Microsoft for a future version of PPL.
  563. - Added PPL-compatible writer-preference RW lock (reader_writer_lock).
  564. - Added TBB_IMPLEMENT_CPP0X macro to control injection of C++0x names
  565. implemented in TBB into namespace std.
  566. - Added almost-C++0x-compatible std::condition_variable, plus a bunch
  567. of other C++0x classes required by condition_variable.
  568. - With TBB_IMPLEMENT_CPP0X, tbb_thread can be also used as std::thread.
  569. - task.cpp was split into several translation units to structure
  570. TBB scheduler sources layout. Static data layout and library
  571. initialization logic were also updated.
  572. - TBB scheduler reworked to prevent master threads from stealing
  573. work belonging to other masters.
  574. - Class task was extended with enqueue() method, and slightly changed
  575. semantics of methods spawn() and destroy(). For exact semantics,
  576. refer to TBB Reference manual.
  577. - task_group_context now allows for destruction by non-owner threads.
  578. - Added TBB_USE_EXCEPTIONS macro to control use of exceptions in TBB
  579. headers. It turns off (i.e. sets to 0) automatically if specified
  580. compiler options disable exception handling.
  581. - TBB is enabled to run on top of Microsoft's Concurrency Runtime
  582. on Windows* 7 (via our worker dispatcher known as RML).
  583. - Removed old unused busy-waiting code in concurrent_queue.
  584. - Described the advanced build & test options in src/index.html.
  585. - Warning level for GCC raised with -Wextra and a few other options.
  586. - Multiple fixes and improvements in code, tests, examples, and docs.
  587. Open-source contributions integrated:
  588. - Xbox support by Roman Lut (Deep Shadows), though further changes are
  589. required to make it working; e.g. post-2.1 entry points are missing.
  590. - "Eventcount" by Dmitry Vyukov evolved into concurrent_monitor,
  591. an internal class used in the implementation of concurrent_queue.
  592. ------------------------------------------------------------------------
  593. Intel TBB 2.2 Update 3 commercial-aligned release
  594. TBB_INTERFACE_VERSION == 4003
  595. Changes (w.r.t. Intel TBB 2.2 Update 2 commercial-aligned release):
  596. - PDF documentation updated.
  597. Bugs fixed:
  598. - concurrent_hash_map compatibility issue exposed on Linux in case
  599. two versions of the container were used by different modules.
  600. - enforce 16 byte stack alignment for consistence with GCC; required
  601. to work correctly with 128-bit variables processed by SSE.
  602. - construct() methods of allocator classes now use global operator new.
  603. ------------------------------------------------------------------------
  604. Intel TBB 2.2 Update 2 commercial-aligned release
  605. TBB_INTERFACE_VERSION == 4002
  606. Changes (w.r.t. Intel TBB 2.2 Update 1 commercial-aligned release):
  607. - parallel_invoke and parallel_for_each now take function objects
  608. by const reference, not by value.
  609. - Building TBB with /MT is supported, to avoid dependency on particular
  610. versions of Visual C++* runtime DLLs. TBB DLLs built with /MT
  611. are located in vc_mt directory.
  612. - Class critical_section introduced.
  613. - Improvements in exception support: new exception classes introduced,
  614. all exceptions are thrown via an out-of-line internal method.
  615. - Improvements and fixes in the TBB allocator and malloc replacement,
  616. including robust memory identification, and more reliable dynamic
  617. function substitution on Windows*.
  618. - Method swap() added to class tbb_thread.
  619. - Methods rehash() and bucket_count() added to concurrent_hash_map.
  620. - Added support for Visual Studio* 2010 Beta2. No special binaries
  621. provided, but CRT-independent DLLs (vc_mt) should work.
  622. - Other fixes and improvements in code, tests, examples, and docs.
  623. Open-source contributions integrated:
  624. - The fix to build 32-bit TBB on Mac OS* X 10.6.
  625. - GCC-based port for SPARC Solaris by Michailo Matijkiw, with use of
  626. earlier work by Raf Schietekat.
  627. Bugs fixed:
  628. - 159 - TBB build for PowerPC* running Mac OS* X.
  629. - 160 - IBM* Java segfault if used with TBB allocator.
  630. - crash in concurrent_queue<char> (1616).
  631. ------------------------------------------------------------------------
  632. Intel TBB 2.2 Update 1 commercial-aligned release
  633. TBB_INTERFACE_VERSION == 4001
  634. Changes (w.r.t. Intel TBB 2.2 commercial-aligned release):
  635. - Incorporates all changes from open-source releases below.
  636. - Documentation was updated.
  637. - TBB scheduler auto-initialization now covers all possible use cases.
  638. - concurrent_queue: made argument types of sizeof used in paddings
  639. consistent with those actually used.
  640. - Memory allocator was improved: supported corner case of user's malloc
  641. calling scalable_malloc (non-Windows), corrected processing of
  642. memory allocation requests during tbb memory allocator startup
  643. (Linux).
  644. - Windows malloc replacement has got better support for static objects.
  645. - In pipeline setups that do not allow actual parallelism, execution
  646. by a single thread is guaranteed, idle spinning eliminated, and
  647. performance improved.
  648. - RML refactoring and clean-up.
  649. - New constructor for concurrent_hash_map allows reserving space for
  650. a number of items.
  651. - Operator delete() added to the TBB exception classes.
  652. - Lambda support was improved in parallel_reduce.
  653. - gcc 4.3 warnings were fixed for concurrent_queue.
  654. - Fixed possible initialization deadlock in modules using TBB entities
  655. during construction of global static objects.
  656. - Copy constructor in concurrent_hash_map was fixed.
  657. - Fixed a couple of rare crashes in the scheduler possible before
  658. in very specific use cases.
  659. - Fixed a rare crash in the TBB allocator running out of memory.
  660. - New tests were implemented, including test_lambda.cpp that checks
  661. support for lambda expressions.
  662. - A few other small changes in code, tests, and documentation.
  663. ------------------------------------------------------------------------
  664. 20090809 open-source release
  665. Changes (w.r.t. Intel TBB 2.2 commercial-aligned release):
  666. - Fixed known exception safety issues in concurrent_vector.
  667. - Better concurrency of simultaneous grow requests in concurrent_vector.
  668. - TBB allocator further improves performance of large object allocation.
  669. - Problem with source of text relocations was fixed on Linux
  670. - Fixed bugs related to malloc replacement under Windows
  671. - A few other small changes in code and documentation.
  672. ------------------------------------------------------------------------
  673. Intel TBB 2.2 commercial-aligned release
  674. TBB_INTERFACE_VERSION == 4000
  675. Changes (w.r.t. Intel TBB 2.1 U4 commercial-aligned release):
  676. - Incorporates all changes from open-source releases below.
  677. - Architecture folders renamed from em64t to intel64 and from itanium
  678. to ia64.
  679. - Major Interface version changed from 3 to 4. Deprecated interfaces
  680. might be removed in future releases.
  681. - Parallel algorithms that use partitioners have switched to use
  682. the auto_partitioner by default.
  683. - Improved memory allocator performance for allocations bigger than 8K.
  684. - Added new thread-bound filters functionality for pipeline.
  685. - New implementation of concurrent_hash_map that improves performance
  686. significantly.
  687. - A few other small changes in code and documentation.
  688. ------------------------------------------------------------------------
  689. 20090511 open-source release
  690. Changes (w.r.t. previous open-source release):
  691. - Basic support for MinGW32 development kit.
  692. - Added tbb::zero_allocator class that initializes memory with zeros.
  693. It can be used as an adaptor to any STL-compatible allocator class.
  694. - Added tbb::parallel_for_each template function as alias to parallel_do.
  695. - Added more overloads for tbb::parallel_for.
  696. - Added support for exact exception propagation (can only be used with
  697. compilers that support C++0x std::exception_ptr).
  698. - tbb::atomic template class can be used with enumerations.
  699. - mutex, recursive_mutex, spin_mutex, spin_rw_mutex classes extended
  700. with explicit lock/unlock methods.
  701. - Fixed size() and grow_to_at_least() methods of tbb::concurrent_vector
  702. to provide space allocation guarantees. More methods added for
  703. compatibility with std::vector, including some from C++0x.
  704. - Preview of a lambda-friendly interface for low-level use of tasks.
  705. - scalable_msize function added to the scalable allocator (Windows only).
  706. - Rationalized internal auxiliary functions for spin-waiting and backoff.
  707. - Several tests undergo decent refactoring.
  708. Changes affecting backward compatibility:
  709. - Improvements in concurrent_queue, including limited API changes.
  710. The previous version is deprecated; its functionality is accessible
  711. via methods of the new tbb::concurrent_bounded_queue class.
  712. - grow* and push_back methods of concurrent_vector changed to return
  713. iterators; old semantics is deprecated.
  714. ------------------------------------------------------------------------
  715. Intel TBB 2.1 Update 4 commercial-aligned release
  716. TBB_INTERFACE_VERSION == 3016
  717. Changes (w.r.t. Intel TBB 2.1 U3 commercial-aligned release):
  718. - Added tests for aligned memory allocations and malloc replacement.
  719. - Several improvements for better bundling with Intel(R) C++ Compiler.
  720. - A few other small changes in code and documentaion.
  721. Bugs fixed:
  722. - 150 - request to build TBB examples with debug info in release mode.
  723. - backward compatibility issue with concurrent_queue on Windows.
  724. - dependency on VS 2005 SP1 runtime libraries removed.
  725. - compilation of GUI examples under Xcode* 3.1 (1577).
  726. - On Windows, TBB allocator classes can be instantiated with const types
  727. for compatibility with MS implementation of STL containers (1566).
  728. ------------------------------------------------------------------------
  729. 20090313 open-source release
  730. Changes (w.r.t. 20081109 open-source release):
  731. - Includes all changes introduced in TBB 2.1 Update 2 & Update 3
  732. commercial-aligned releases (see below for details).
  733. - Added tbb::parallel_invoke template function. It runs up to 10
  734. user-defined functions in parallel and waits for them to complete.
  735. - Added a special library providing ability to replace the standard
  736. memory allocation routines in Microsoft* C/C++ RTL (malloc/free,
  737. global new/delete, etc.) with the TBB memory allocator.
  738. Usage details are described in include/tbb/tbbmalloc_proxy.h file.
  739. - Task scheduler switched to use new implementation of its core
  740. functionality (deque based task pool, new structure of arena slots).
  741. - Preview of Microsoft* Visual Studio* 2005 project files for
  742. building the library is available in build/vsproject folder.
  743. - Added tests for aligned memory allocations and malloc replacement.
  744. - Added parallel_for/game_of_life.net example (for Windows only)
  745. showing TBB usage in a .NET application.
  746. - A number of other fixes and improvements to code, tests, makefiles,
  747. examples and documents.
  748. Bugs fixed:
  749. - The same list as in TBB 2.1 Update 4 right above.
  750. ------------------------------------------------------------------------
  751. Intel TBB 2.1 Update 3 commercial-aligned release
  752. TBB_INTERFACE_VERSION == 3015
  753. Changes (w.r.t. Intel TBB 2.1 U2 commercial-aligned release):
  754. - Added support for aligned allocations to the TBB memory allocator.
  755. - Added a special library to use with LD_PRELOAD on Linux* in order to
  756. replace the standard memory allocation routines in C/C++ with the
  757. TBB memory allocator.
  758. - Added null_mutex and null_rw_mutex: no-op classes interface-compliant
  759. to other TBB mutexes.
  760. - Improved performance of parallel_sort, to close most of the serial gap
  761. with std::sort, and beat it on 2 and more cores.
  762. - A few other small changes.
  763. Bugs fixed:
  764. - the problem where parallel_for hanged after exception throw
  765. if affinity_partitioner was used (1556).
  766. - get rid of VS warnings about mbstowcs deprecation (1560),
  767. as well as some other warnings.
  768. - operator== for concurrent_vector::iterator fixed to work correctly
  769. with different vector instances.
  770. ------------------------------------------------------------------------
  771. Intel TBB 2.1 Update 2 commercial-aligned release
  772. TBB_INTERFACE_VERSION == 3014
  773. Changes (w.r.t. Intel TBB 2.1 U1 commercial-aligned release):
  774. - Incorporates all open-source-release changes down to TBB 2.1 U1,
  775. except for:
  776. - 20081019 addition of enumerable_thread_specific;
  777. - Warning level for Microsoft* Visual C++* compiler raised to /W4 /Wp64;
  778. warnings found on this level were cleaned or suppressed.
  779. - Added TBB_runtime_interface_version API function.
  780. - Added new example: pipeline/square.
  781. - Added exception handling and cancellation support
  782. for parallel_do and pipeline.
  783. - Added copy constructor and [begin,end) constructor to concurrent_queue.
  784. - Added some support for beta version of Intel(R) Parallel Amplifier.
  785. - Added scripts to set environment for cross-compilation of 32-bit
  786. applications on 64-bit Linux with Intel(R) C++ Compiler.
  787. - Fixed semantics of concurrent_vector::clear() to not deallocate
  788. internal arrays. Fixed compact() to perform such deallocation later.
  789. - Fixed the issue with atomic<T*> when T is incomplete type.
  790. - Improved support for PowerPC* Macintosh*, including the fix
  791. for a bug in masked compare-and-swap reported by a customer.
  792. - As usual, a number of other improvements everywhere.
  793. ------------------------------------------------------------------------
  794. 20081109 open-source release
  795. Changes (w.r.t. previous open-source release):
  796. - Added new serial out of order filter for tbb::pipeline.
  797. - Fixed the issue with atomic<T*>::operator= reported at the forum.
  798. - Fixed the issue with using tbb::task::self() in task destructor
  799. reported at the forum.
  800. - A number of other improvements to code, tests, makefiles, examples
  801. and documents.
  802. Open-source contributions integrated:
  803. - Changes in the memory allocator were partially integrated.
  804. ------------------------------------------------------------------------
  805. 20081019 open-source release
  806. Changes (w.r.t. previous open-source release):
  807. - Introduced enumerable_thread_specific<T>. This new class provides a
  808. wrapper around native thread local storage as well as iterators and
  809. ranges for accessing the thread local copies (1533).
  810. - Improved support for Intel(R) Threading Analysis Tools
  811. on Intel(R) 64 architecture.
  812. - Dependency from Microsoft* CRT was integrated to the libraries using
  813. manifests, to avoid issues if called from code that uses different
  814. version of Visual C++* runtime than the library.
  815. - Introduced new defines TBB_USE_ASSERT, TBB_USE_DEBUG,
  816. TBB_USE_PERFORMANCE_WARNINGS, TBB_USE_THREADING_TOOLS.
  817. - A number of other improvements to code, tests, makefiles, examples
  818. and documents.
  819. Open-source contributions integrated:
  820. - linker optimization: /incremental:no .
  821. ------------------------------------------------------------------------
  822. 20080925 open-source release
  823. Changes (w.r.t. previous open-source release):
  824. - Same fix for a memory leak in the memory allocator as in TBB 2.1 U1.
  825. - Improved support for lambda functions.
  826. - Fixed more concurrent_queue issues reported at the forum.
  827. - A number of other improvements to code, tests, makefiles, examples
  828. and documents.
  829. ------------------------------------------------------------------------
  830. Intel TBB 2.1 Update 1 commercial-aligned release
  831. TBB_INTERFACE_VERSION == 3013
  832. Changes (w.r.t. Intel TBB 2.1 commercial-aligned release):
  833. - Fixed small memory leak in the memory allocator.
  834. - Incorporates all open-source-release changes since TBB 2.1,
  835. except for:
  836. - 20080825 changes for parallel_do;
  837. ------------------------------------------------------------------------
  838. 20080825 open-source release
  839. Changes (w.r.t. previous open-source release):
  840. - Added exception handling and cancellation support for parallel_do.
  841. - Added default HashCompare template argument for concurrent_hash_map.
  842. - Fixed concurrent_queue.clear() issues due to incorrect assumption
  843. about clear() being private method.
  844. - Added the possibility to use TBB in applications that change
  845. default calling conventions (Windows* only).
  846. - Many improvements to code, tests, examples, makefiles and documents.
  847. Bugs fixed:
  848. - 120, 130 - memset declaration missed in concurrent_hash_map.h
  849. ------------------------------------------------------------------------
  850. 20080724 open-source release
  851. Changes (w.r.t. previous open-source release):
  852. - Inline assembly for atomic operations improved for gcc 4.3
  853. - A few more improvements to the code.
  854. ------------------------------------------------------------------------
  855. 20080709 open-source release
  856. Changes (w.r.t. previous open-source release):
  857. - operator=() was added to the tbb_thread class according to
  858. the current working draft for std::thread.
  859. - Recognizing SPARC* in makefiles for Linux* and Sun Solaris*.
  860. Bugs fixed:
  861. - 127 - concurrent_hash_map::range fixed to split correctly.
  862. Open-source contributions integrated:
  863. - fix_set_midpoint.diff by jyasskin
  864. - SPARC* support in makefiles by Raf Schietekat
  865. ------------------------------------------------------------------------
  866. 20080622 open-source release
  867. Changes (w.r.t. previous open-source release):
  868. - Fixed a hang that rarely happened on Linux
  869. during deinitialization of the TBB scheduler.
  870. - Improved support for Intel(R) Thread Checker.
  871. - A few more improvements to the code.
  872. ------------------------------------------------------------------------
  873. Intel TBB 2.1 commercial-aligned release
  874. TBB_INTERFACE_VERSION == 3011
  875. Changes (w.r.t. Intel TBB 2.0 U3 commercial-aligned release):
  876. - All open-source-release changes down to, and including, TBB 2.0 below,
  877. were incorporated into this release.
  878. ------------------------------------------------------------------------
  879. 20080605 open-source release
  880. Changes (w.r.t. previous open-source release):
  881. - Explicit control of exported symbols by version scripts added on Linux.
  882. - Interfaces polished for exception handling & algorithm cancellation.
  883. - Cache behavior improvements in the scalable allocator.
  884. - Improvements in text_filter, polygon_overlay, and other examples.
  885. - A lot of other stability improvements in code, tests, and makefiles.
  886. - First release where binary packages include headers/docs/examples, so
  887. binary packages are now self-sufficient for using TBB.
  888. Open-source contributions integrated:
  889. - atomics patch (partially).
  890. - tick_count warning patch.
  891. Bugs fixed:
  892. - 118 - fix for boost compatibility.
  893. - 123 - fix for tbb_machine.h.
  894. ------------------------------------------------------------------------
  895. 20080512 open-source release
  896. Changes (w.r.t. previous open-source release):
  897. - Fixed a problem with backward binary compatibility
  898. of debug Linux builds.
  899. - Sun* Studio* support added.
  900. - soname support added on Linux via linker script. To restore backward
  901. binary compatibility, *.so -> *.so.2 softlinks should be created.
  902. - concurrent_hash_map improvements - added few new forms of insert()
  903. method and fixed precondition and guarantees of erase() methods.
  904. Added runtime warning reporting about bad hash function used for
  905. the container. Various improvements for performance and concurrency.
  906. - Cancellation mechanism reworked so that it does not hurt scalability.
  907. - Algorithm parallel_do reworked. Requirement for Body::argument_type
  908. definition removed, and work item argument type can be arbitrarily
  909. cv-qualified.
  910. - polygon_overlay example added.
  911. - A few more improvements to code, tests, examples and Makefiles.
  912. Open-source contributions integrated:
  913. - Soname support patch for Bugzilla #112.
  914. Bugs fixed:
  915. - 112 - fix for soname support.
  916. ------------------------------------------------------------------------
  917. Intel TBB 2.0 U3 commercial-aligned release (package 017, April 20, 2008)
  918. Corresponds to commercial 019 (for Linux*, 020; for Mac OS* X, 018)
  919. packages.
  920. Changes (w.r.t. Intel TBB 2.0 U2 commercial-aligned release):
  921. - Does not contain open-source-release changes below; this release is
  922. only a minor update of TBB 2.0 U2.
  923. - Removed spin-waiting in pipeline and concurrent_queue.
  924. - A few more small bug fixes from open-source releases below.
  925. ------------------------------------------------------------------------
  926. 20080408 open-source release
  927. Changes (w.r.t. previous open-source release):
  928. - count_strings example reworked: new word generator implemented, hash
  929. function replaced, and tbb_allocator is used with std::string class.
  930. - Static methods of spin_rw_mutex were replaced by normal member
  931. functions, and the class name was versioned.
  932. - tacheon example was renamed to tachyon.
  933. - Improved support for Intel(R) Thread Checker.
  934. - A few more minor improvements.
  935. Open-source contributions integrated:
  936. - Two sets of Sun patches for IA Solaris support.
  937. ------------------------------------------------------------------------
  938. 20080402 open-source release
  939. Changes (w.r.t. previous open-source release):
  940. - Exception handling and cancellation support for tasks and algorithms
  941. fully enabled.
  942. - Exception safety guaranties defined and fixed for all concurrent
  943. containers.
  944. - User-defined memory allocator support added to all concurrent
  945. containers.
  946. - Performance improvement of concurrent_hash_map, spin_rw_mutex.
  947. - Critical fix for a rare race condition during scheduler
  948. initialization/de-initialization.
  949. - New methods added for concurrent containers to be closer to STL,
  950. as well as automatic filters removal from pipeline
  951. and __TBB_AtomicAND function.
  952. - The volatile keyword dropped from where it is not really needed.
  953. - A few more minor improvements.
  954. ------------------------------------------------------------------------
  955. 20080319 open-source release
  956. Changes (w.r.t. previous open-source release):
  957. - Support for gcc version 4.3 was added.
  958. - tbb_thread class, near compatible with std::thread expected in C++0x,
  959. was added.
  960. Bugs fixed:
  961. - 116 - fix for compilation issues with gcc version 4.2.1.
  962. - 120 - fix for compilation issues with gcc version 4.3.
  963. ------------------------------------------------------------------------
  964. 20080311 open-source release
  965. Changes (w.r.t. previous open-source release):
  966. - An enumerator added for pipeline filter types (serial vs. parallel).
  967. - New task_scheduler_observer class introduced, to observe when
  968. threads start and finish interacting with the TBB task scheduler.
  969. - task_scheduler_init reverted to not use internal versioned class;
  970. binary compatibility guaranteed with stable releases only.
  971. - Various improvements to code, tests, examples and Makefiles.
  972. ------------------------------------------------------------------------
  973. 20080304 open-source release
  974. Changes (w.r.t. previous open-source release):
  975. - Task-to-thread affinity support, previously kept under a macro,
  976. now fully legalized.
  977. - Work-in-progress on cache_aligned_allocator improvements.
  978. - Pipeline really supports parallel input stage; it's no more serialized.
  979. - Various improvements to code, tests, examples and Makefiles.
  980. Bugs fixed:
  981. - 119 - fix for scalable_malloc sometimes failing to return a big block.
  982. - TR575 - fixed a deadlock occurring on Windows in startup/shutdown
  983. under some conditions.
  984. ------------------------------------------------------------------------
  985. 20080226 open-source release
  986. Changes (w.r.t. previous open-source release):
  987. - Introduced tbb_allocator to select between standard allocator and
  988. tbb::scalable_allocator when available.
  989. - Removed spin-waiting in pipeline and concurrent_queue.
  990. - Improved performance of concurrent_hash_map by using tbb_allocator.
  991. - Improved support for Intel(R) Thread Checker.
  992. - Various improvements to code, tests, examples and Makefiles.
  993. ------------------------------------------------------------------------
  994. Intel TBB 2.0 U2 commercial-aligned release (package 017, February 14, 2008)
  995. Corresponds to commercial 017 (for Linux*, 018; for Mac OS* X, 016)
  996. packages.
  997. Changes (w.r.t. Intel TBB 2.0 U1 commercial-aligned release):
  998. - Does not contain open-source-release changes below; this release is
  999. only a minor update of TBB 2.0 U1.
  1000. - Add support for Microsoft* Visual Studio* 2008, including binary
  1001. libraries and VS2008 projects for examples.
  1002. - Use SwitchToThread() not Sleep() to yield threads on Windows*.
  1003. - Enhancements to Doxygen-readable comments in source code.
  1004. - A few more small bug fixes from open-source releases below.
  1005. Bugs fixed:
  1006. - TR569 - Memory leak in concurrent_queue.
  1007. ------------------------------------------------------------------------
  1008. 20080207 open-source release
  1009. Changes (w.r.t. previous open-source release):
  1010. - Improvements and minor fixes in VS2008 projects for examples.
  1011. - Improvements in code for gating worker threads that wait for work,
  1012. previously consolidated under #if IMPROVED_GATING, now legalized.
  1013. - Cosmetic changes in code, examples, tests.
  1014. Bugs fixed:
  1015. - 113 - Iterators and ranges should be convertible to their const
  1016. counterparts.
  1017. - TR569 - Memory leak in concurrent_queue.
  1018. ------------------------------------------------------------------------
  1019. 20080122 open-source release
  1020. Changes (w.r.t. previous open-source release):
  1021. - Updated examples/parallel_for/seismic to improve the visuals and to
  1022. use the affinity_partitioner (20071127 and forward) for better
  1023. performance.
  1024. - Minor improvements to unittests and performance tests.
  1025. ------------------------------------------------------------------------
  1026. 20080115 open-source release
  1027. Changes (w.r.t. previous open-source release):
  1028. - Cleanup, simplifications and enhancements to the Makefiles for
  1029. building the libraries (see build/index.html for high-level
  1030. changes) and the examples.
  1031. - Use SwitchToThread() not Sleep() to yield threads on Windows*.
  1032. - Engineering work-in-progress on exception safety/support.
  1033. - Engineering work-in-progress on affinity_partitioner for
  1034. parallel_reduce.
  1035. - Engineering work-in-progress on improved gating for worker threads
  1036. (idle workers now block in the OS instead of spinning).
  1037. - Enhancements to Doxygen-readable comments in source code.
  1038. Bugs fixed:
  1039. - 102 - Support for parallel build with gmake -j
  1040. - 114 - /Wp64 build warning on Windows*.
  1041. ------------------------------------------------------------------------
  1042. 20071218 open-source release
  1043. Changes (w.r.t. previous open-source release):
  1044. - Full support for Microsoft* Visual Studio* 2008 in open-source.
  1045. Binaries for vc9/ will be available in future stable releases.
  1046. - New recursive_mutex class.
  1047. - Full support for 32-bit PowerMac including export files for builds.
  1048. - Improvements to parallel_do.
  1049. ------------------------------------------------------------------------
  1050. 20071206 open-source release
  1051. Changes (w.r.t. previous open-source release):
  1052. - Support for Microsoft* Visual Studio* 2008 in building libraries
  1053. from source as well as in vc9/ projects for examples.
  1054. - Small fixes to the affinity_partitioner first introduced in 20071127.
  1055. - Small fixes to the thread-stack size hook first introduced in 20071127.
  1056. - Engineering work in progress on concurrent_vector.
  1057. - Engineering work in progress on exception behavior.
  1058. - Unittest improvements.
  1059. ------------------------------------------------------------------------
  1060. 20071127 open-source release
  1061. Changes (w.r.t. previous open-source release):
  1062. - Task-to-thread affinity support (affinity partitioner) first appears.
  1063. - More work on concurrent_vector.
  1064. - New parallel_do algorithm (function-style version of parallel while)
  1065. and parallel_do/parallel_preorder example.
  1066. - New task_scheduler_init() hooks for getting default_num_threads() and
  1067. for setting thread stack size.
  1068. - Support for weak memory consistency models in the code base.
  1069. - Futex usage in the task scheduler (Linux).
  1070. - Started adding 32-bit PowerMac support.
  1071. - Intel(R) 9.1 compilers are now the base supported Intel(R) compiler
  1072. version.
  1073. - TBB libraries added to link line automatically on Microsoft Windows*
  1074. systems via #pragma comment linker directives.
  1075. Open-source contributions integrated:
  1076. - FreeBSD platform support patches.
  1077. - AIX weak memory model patch.
  1078. Bugs fixed:
  1079. - 108 - Removed broken affinity.h reference.
  1080. - 101 - Does not build on Debian Lenny (replaced arch with uname -m).
  1081. ------------------------------------------------------------------------
  1082. 20071030 open-source release
  1083. Changes (w.r.t. previous open-source release):
  1084. - More work on concurrent_vector.
  1085. - Better support for building with -Wall -Werror (or not) as desired.
  1086. - A few fixes to eliminate extraneous warnings.
  1087. - Begin introduction of versioning hooks so that the internal/API
  1088. version is tracked via TBB_INTERFACE_VERSION. The newest binary
  1089. libraries should always work with previously-compiled code when-
  1090. ever possible.
  1091. - Engineering work in progress on using futex inside the mutexes (Linux).
  1092. - Engineering work in progress on exception behavior.
  1093. - Engineering work in progress on a new parallel_do algorithm.
  1094. - Unittest improvements.
  1095. ------------------------------------------------------------------------
  1096. 20070927 open-source release
  1097. Changes (w.r.t. Intel TBB 2.0 U1 commercial-aligned release):
  1098. - Minor update to TBB 2.0 U1 below.
  1099. - Begin introduction of new concurrent_vector interfaces not released
  1100. with TBB 2.0 U1.
  1101. ------------------------------------------------------------------------
  1102. Intel TBB 2.0 U1 commercial-aligned release (package 014, October 1, 2007)
  1103. Corresponds to commercial 014 (for Linux*, 016) packages.
  1104. Changes (w.r.t. Intel TBB 2.0 commercial-aligned release):
  1105. - All open-source-release changes down to, and including, TBB 2.0
  1106. below, were incorporated into this release.
  1107. - Made a number of changes to the officially supported OS list:
  1108. Added Linux* OSs:
  1109. Asianux* 3, Debian* 4.0, Fedora Core* 6, Fedora* 7,
  1110. Turbo Linux* 11, Ubuntu* 7.04;
  1111. Dropped Linux* OSs:
  1112. Asianux* 2, Fedora Core* 4, Haansoft* Linux 2006 Server,
  1113. Mandriva/Mandrake* 10.1, Miracle Linux* 4.0,
  1114. Red Flag* DC Server 5.0;
  1115. Only Mac OS* X 10.4.9 (and forward) and Xcode* tool suite 2.4.1 (and
  1116. forward) are now supported.
  1117. - Commercial installers on Linux* fixed to recommend the correct
  1118. binaries to use in more cases, with less unnecessary warnings.
  1119. - Changes to eliminate spurious build warnings.
  1120. Open-source contributions integrated:
  1121. - Two small header guard macro patches; it also fixed bug #94.
  1122. - New blocked_range3d class.
  1123. Bugs fixed:
  1124. - 93 - Removed misleading comments in task.h.
  1125. - 94 - See above.
  1126. ------------------------------------------------------------------------
  1127. 20070815 open-source release
  1128. Changes:
  1129. - Changes to eliminate spurious build warnings.
  1130. - Engineering work in progress on concurrent_vector allocator behavior.
  1131. - Added hooks to use the Intel(R) compiler code coverage tools.
  1132. Open-source contributions integrated:
  1133. - Mac OS* X build warning patch.
  1134. Bugs fixed:
  1135. - 88 - Fixed TBB compilation errors if both VS2005 and Windows SDK are
  1136. installed.
  1137. ------------------------------------------------------------------------
  1138. 20070719 open-source release
  1139. Changes:
  1140. - Minor update to TBB 2.0 commercial-aligned release below.
  1141. - Changes to eliminate spurious build warnings.
  1142. ------------------------------------------------------------------------
  1143. Intel TBB 2.0 commercial-aligned release (package 010, July 19, 2007)
  1144. Corresponds to commercial 010 (for Linux*, 012) packages.
  1145. - TBB open-source debut release.
  1146. ------------------------------------------------------------------------
  1147. Intel TBB 1.1 commercial release (April 10, 2007)
  1148. Changes (w.r.t. Intel TBB 1.0 commercial release):
  1149. - auto_partitioner which offered an automatic alternative to specifying
  1150. a grain size parameter to estimate the best granularity for tasks.
  1151. - The release was added to the Intel(R) C++ Compiler 10.0 Pro.
  1152. ------------------------------------------------------------------------
  1153. Intel TBB 1.0 Update 2 commercial release
  1154. Changes (w.r.t. Intel TBB 1.0 Update 1 commercial release):
  1155. - Mac OS* X 64-bit support added.
  1156. - Source packages for commercial releases introduced.
  1157. ------------------------------------------------------------------------
  1158. Intel TBB 1.0 Update 1 commercial-aligned release
  1159. Changes (w.r.t. Intel TBB 1.0 commercial release):
  1160. - Fix for critical package issue on Mac OS* X.
  1161. ------------------------------------------------------------------------
  1162. Intel TBB 1.0 commercial release (August 29, 2006)
  1163. Changes (w.r.t. Intel TBB 1.0 beta commercial release):
  1164. - New namespace (and compatibility headers for old namespace).
  1165. Namespaces are tbb and tbb::internal and all classes are in the
  1166. underscore_style not the WindowsStyle.
  1167. - New class: scalable_allocator (and cache_aligned_allocator using that
  1168. if it exists).
  1169. - Added parallel_for/tacheon example.
  1170. - Removed C-style casts from headers for better C++ compliance.
  1171. - Bug fixes.
  1172. - Documentation improvements.
  1173. - Improved performance of the concurrent_hash_map class.
  1174. - Upgraded parallel_sort() to support STL-style random-access iterators
  1175. instead of just pointers.
  1176. - The Windows vs7_1 directories renamed to vs7.1 in examples.
  1177. - New class: spin version of reader-writer lock.
  1178. - Added push_back() interface to concurrent_vector().
  1179. ------------------------------------------------------------------------
  1180. Intel TBB 1.0 beta commercial release
  1181. Initial release.
  1182. Features / APIs:
  1183. - Concurrent containers: ConcurrentHashTable, ConcurrentVector,
  1184. ConcurrentQueue.
  1185. - Parallel algorithms: ParallelFor, ParallelReduce, ParallelScan,
  1186. ParallelWhile, Pipeline, ParallelSort.
  1187. - Support: AlignedSpace, BlockedRange (i.e., 1D), BlockedRange2D
  1188. - Task scheduler with multi-master support.
  1189. - Atomics: read, write, fetch-and-store, fetch-and-add, compare-and-swap.
  1190. - Locks: spin, reader-writer, queuing, OS-wrapper.
  1191. - Memory allocation: STL-style memory allocator that avoids false
  1192. sharing.
  1193. - Timers.
  1194. Tools Support:
  1195. - Intel(R) Thread Checker 3.0.
  1196. - Intel(R) Thread Profiler 3.0.
  1197. Documentation:
  1198. - First Use Documents: README.txt, INSTALL.txt, Release_Notes.txt,
  1199. Doc_Index.html, Getting_Started.pdf, Tutorial.pdf, Reference.pdf.
  1200. - Class hierarchy HTML pages (Doxygen).
  1201. - Tree of index.html pages for navigating the installed package, esp.
  1202. for the examples.
  1203. Examples:
  1204. - One for each of these TBB features: ConcurrentHashTable, ParallelFor,
  1205. ParallelReduce, ParallelWhile, Pipeline, Task.
  1206. - Live copies of examples from Getting_Started.pdf.
  1207. - TestAll example that exercises every class and header in the package
  1208. (i.e., a "liveness test").
  1209. - Compilers: see Release_Notes.txt.
  1210. - APIs: OpenMP, WinThreads, Pthreads.
  1211. Packaging:
  1212. - Package for Windows installs IA-32 and EM64T bits.
  1213. - Package for Linux installs IA-32, EM64T and IPF bits.
  1214. - Package for Mac OS* X installs IA-32 bits.
  1215. - All packages support Intel(R) software setup assistant (ISSA) and
  1216. install-time FLEXlm license checking.
  1217. - ISSA support allows license file to be specified directly in case of
  1218. no Internet connection or problems with IRC or serial #s.
  1219. - Linux installer allows root or non-root, RPM or non-RPM installs.
  1220. - FLEXlm license servers (for those who need floating/counted licenses)
  1221. are provided separately on Intel(R) Premier.
  1222. ------------------------------------------------------------------------
  1223. Intel and Cilk are registered trademarks or trademarks of Intel Corporation or its
  1224. subsidiaries in the United States and other countries.
  1225. * Other names and brands may be claimed as the property of others.