Commit Graph

23 Commits

Author SHA256 Message Date
Ismail Dönmez
1be55c59e3 Accepting request 631209 from home:bmwiedemann:branches:devel:libraries:c_c++
Extend reproducible.patch to not capture build kernel version (boo#1101107).

Also filed upstream https://github.com/01org/tbb/pull/82

OBS-URL: https://build.opensuse.org/request/show/631209
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=47
2018-08-24 08:20:04 +00:00
Ismail Dönmez
ee995399fb Accepting request 626788 from home:bmwiedemann:branches:devel:libraries:c_c++
Extend reproducible.patch to override build date (boo#1047218)

OBS-URL: https://build.opensuse.org/request/show/626788
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=45
2018-08-01 12:59:03 +00:00
371a6931e6 Accepting request 562437 from openSUSE:Factory:Staging:O:DVD
- Add conditions to build with py2 and py3 respectively in order
  to allow us disable one based on codestream

OBS-URL: https://build.opensuse.org/request/show/562437
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=43
2018-01-09 08:02:08 +00:00
Ismail Dönmez
f5a3326d97 - Add disable-irml.patch to disable linking to libirml
- Actually update to tarball to 2018_U2 release

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=41
2017-12-21 12:21:29 +00:00
Ismail Dönmez
d0242196ab OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=38 2017-12-16 15:31:05 +00:00
c8d11dcc6b Accepting request 538180 from home:pluskalm:branches:devel:libraries:c_c++
- Build python2 and python3 bindings
- Do not bundle python bindings with shared library

OBS-URL: https://build.opensuse.org/request/show/538180
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=35
2017-11-06 12:38:06 +00:00
Ismail Dönmez
8f95ea360c - Update to version 2018 release
* Now fully supports this_task_arena::isolate() function.
  * Parallel STL, an implementation of the C++ standard library
    algorithms with support for execution policies, has been
    introduced.
  * Fixed a bug preventing use of streaming_node and opencl_node
    with Clang.
  * Fixed this_task_arena::isolate() function to work correctly
    with parallel_invoke and parallel_do algorithms.
  * Fixed a memory leak in composite_node.
  * Fixed an assertion failure in debug tbbmalloc binaries when
    TBBMALLOC_CLEAN_ALL_BUFFERS is used.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=33
2017-09-21 12:07:03 +00:00
23b9802bd7 Accepting request 499630 from home:bmwiedemann:branches:devel:libraries:c_c++
Add reproducible.patch to not add build hostname+kernel to binary

OBS-URL: https://build.opensuse.org/request/show/499630
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=31
2017-05-30 10:07:37 +00:00
Ismail Dönmez
e0214c6d6b - Update to version 2017_20170412 release
* Added a blocking terminate extension to the task_scheduler_init
    class that allows an object to wait for termination of worker
    threads.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=29
2017-05-24 12:24:11 +00:00
Ismail Dönmez
4acf6b530c - Add missing include files boo#1034842
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=27
2017-04-19 08:09:56 +00:00
Ismail Dönmez
2eccd1b952 - Update to 2017_20170226 release
* Added support for C++11 move semantics in parallel_do.
  * Constructors for many classes, including graph nodes, concurrent
    containers, thread-local containers, etc., are declared explicit
    and cannot be used for implicit conversions anymore.
  * Added a workaround for bug 16657 in the GNU C Library (glibc)
    affecting the debug version of tbb::mutex.
  * Fixed a crash in pool_identify() called for an object allocated in
    another thread.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=25
2017-03-05 19:48:28 +00:00
Ismail Dönmez
5efb4b0192 - Update to 2017_20161128 release
* Added template class gfx_factory to the flow graph API. It
    implements the Factory concept for streaming_node to offload
    computations to Intel processor graphics.
  * Fixed a possible deadlock caused by missed wakeup signals in
    task_arena::execute().

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=23
2016-12-12 09:08:31 +00:00
Ismail Dönmez
514691c607 - Update to version 2017_20161004
* Fixed the issue with task_arena::execute() not being processed
    when the calling thread cannot join the arena.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=21
2016-11-03 07:55:50 +00:00
Ismail Dönmez
3a0ebea12a - Updated to version 2017_20160722
* static_partitioner class is now a fully supported feature.
  * async_node class is now a fully supported feature.
  * For 64-bit platforms, quadrupled the worst-case limit on the amount
    of memory the Intel TBB allocator can handle.
  * Added TBB_USE_GLIBCXX_VERSION macro to specify the version of GNU
    libstdc++ when it cannot be properly recognized, e.g. when used
    with Clang on Linux* OS. Inspired by a contribution from David A.
  * Added graph/stereo example to demostrate tbb::flow::async_msg.
  * Removed a few cases of excessive user data copying in the flow graph.
  * Reworked split_node to eliminate unnecessary overheads.
  * Added support for C++11 move semantics to the argument of
    tbb::parallel_do_feeder::add() method.
  * Added C++11 move constructor and assignment operator to
    tbb::combinable template class.
  * Added tbb::this_task_arena::max_concurrency() function and
    max_concurrency() method of class task_arena returning the maximal
    number of threads that can work inside an arena.
  * Deprecated tbb::task_arena::current_thread_index() static method;
    use tbb::this_task_arena::current_thread_index() function instead.
- License changed to Apache-2.0
- Please see included CHANGES file for all changes.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=19
2016-09-17 13:10:24 +00:00
Ismail Dönmez
a8fba5126e -
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=16
2016-06-12 11:59:41 +00:00
Ismail Dönmez
ca45639cfa - Remove non-distributable files.
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=14
2016-06-10 08:19:13 +00:00
Ismail Dönmez
d6db89776b - Update to version 44_20160526
* Added a Python module which is able to replace Python's thread pool 
    class with the implementation based on Intel TBB task scheduler.
  * Fixed the implementation of 64-bit tbb::atomic for IA-32 architecture
    to work correctly with GCC 5.2 in C++11/14 mode.
  * Fixed a possible crash when tasks with affinity (e.g. specified via
    affinity_partitioner) are used simultaneously with task priority
    changes.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=13
2016-06-08 11:21:21 +00:00
Ismail Dönmez
6b3ab9324f Accepting request 393634 from home:jengelh:branches:devel:libraries:c_c++
- Update group, and description of tbbmalloc.
The defattr 4th arg won't be needed.

OBS-URL: https://build.opensuse.org/request/show/393634
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=12
2016-05-04 12:34:10 +00:00
Ismail Dönmez
1fada0345a - Update to version 44_20160128:
* Lots of changes, see the CHANGES file.
- Drop tbb-4.0-cas.patch, fixed upstream.

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=6
2016-05-04 10:55:21 +00:00
Ismail Dönmez
6a04b9fe10 Accepting request 155678 from home:adra:branches:devel:libraries:c_c++
Update to version 41_20130116, Removed tbb package, Updated optflags.patch, Added a patch to fix build on PowerPC

OBS-URL: https://build.opensuse.org/request/show/155678
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=5
2013-02-21 21:24:06 +00:00
7c38534d5c Remove redundant tags/sections
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=3
2012-01-29 01:34:18 +00:00
Cristian Rodríguez
5054611b24 - Update to version tbb30_20110704
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=2
2011-08-14 23:37:08 +00:00
c7be8d3d1e Accepting request 20510 from home:msmeissn:branches:devel:libraries:c_c++
Copy from home:msmeissn:branches:devel:libraries:c_c++/tbb via accept of submit request 20510 revision 4.
Request was accepted with message:
added

OBS-URL: https://build.opensuse.org/request/show/20510
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/tbb?expand=0&rev=1
2009-09-16 11:20:34 +00:00