oneTBB icon indicating copy to clipboard operation
oneTBB copied to clipboard

oneAPI Threading Building Blocks (oneTBB)

Results 383 oneTBB issues
Sort by recently updated
recently updated
newest added

Suppose I am doing lambda inside a input_node: queue is a concurrent_queue. const auto fetcher = [this](flow_control& control) { if (kill) control.stop(); shared_ptr res; while (!queue.try_pop(res) && !kill) {}; return...

When a .dll is loaded using the LoadLibary() then the "reserved" parameter is NULL in the DllMain() function. This makes it impossible to dynamicly load the malloc_proxy dynamically at runtime...

Hello, my flow graph usage requires some nodes to conditionally send messages to their successors. Currently I achieve this by using a single-output multifunction_node and conditionally sending to the output...

enhancement

The PR adds debugger visualization Natvis file for several TBB types, this makes debugging easier and more visible for developers. Can be used in Microsoft Visual Studio and Visual Studio...

enhancement

fix typo ### Description fix typo Fixes # - _issue number(s) if exists_ - [ ] - git commit message contains an appropriate signed-off-by string _(see [CONTRIBUTING.md](https://github.com/oneapi-src/oneTBB/blob/master/CONTRIBUTING.md#pull-requests) for details)_ ###...

- Introfuced internal two helper classes : - literal_const_string - static_string - refactored dynamic_link and handle_perror functions to use them ### Description _Add comprehensive description of proposed changes_ Fixes #...

enhancement

### Description The patch fixes two issues: 1. Memory corruption over micro_queue page allocation. `tail_counter` is serialization atomic that synchronizes memory related to micro_queue pages. Hence, we need to build...

bug fix

### Description This patch adds preliminary support of [Emscripten](https://emscripten.org/) compiler Fixes #460 - [x] - git commit message contains appropriate signed-off-by string _(see [CONTRIBUTING.md](https://github.com/oneapi-src/oneTBB/blob/master/CONTRIBUTING.md#pull-requests) for details)_ ### Type of change...

enhancement

Currently I cannot find the Apple Silicon version of TBB anywhere from where I can download them "scripted". I can download it via brew and also via conda, but not...

glibc 2.33+ has introduced this API and actively deprecated the old mallinfo API, therefore it will be prudent to enquire the platform for what it can support and conditionalize the...

enhancement