History log of /oneTBB/src/ (Results 1 – 25 of 137)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
627cac6d05-Feb-2024 Ilya Isaev <[email protected]>

Correct behavior on deactivated permit (#1308)

* Correct behavior on deactivated permit

---------

Signed-off-by: Isaev, Ilya <[email protected]>
Co-authored-by: Pavel Kumbrasev <pavel.kumb

Correct behavior on deactivated permit (#1308)

* Correct behavior on deactivated permit

---------

Signed-off-by: Isaev, Ilya <[email protected]>
Co-authored-by: Pavel Kumbrasev <[email protected]>

show more ...

f71c92ae16-Nov-2023 Dmitri Mokhov <[email protected]>

Minor waiter code refactoring (#1262)

Signed-off-by: Dmitri Mokhov <[email protected]>

7b8018f006-Nov-2023 Brecht Sanders <[email protected]>

Support Windows on ARM64 (aarch64) when building with MinGW-w64 (#1245)

f27eb14706-Nov-2023 Vladislav Shchapov <[email protected]>

CMake: add option TBB_INSTALL (#800)

Signed-off-by: Vladislav Shchapov <[email protected]>


/oneTBB/.github/workflows/ci.yml
/oneTBB/CMakeLists.txt
/oneTBB/INSTALL.md
/oneTBB/cmake/README.md
/oneTBB/cmake/compilers/IntelLLVM.cmake
/oneTBB/cmake/compilers/MSVC.cmake
/oneTBB/cmake/config_generation.cmake
/oneTBB/cmake/templates/TBBConfig.cmake.in
/oneTBB/cmake/utils.cmake
/oneTBB/examples/CMakeLists.txt
/oneTBB/examples/README.md
/oneTBB/examples/common/gui/CMakeLists.txt
/oneTBB/examples/concurrent_hash_map/count_strings/CMakeLists.txt
/oneTBB/examples/concurrent_priority_queue/shortpath/CMakeLists.txt
/oneTBB/examples/getting_started/sub_string_finder/CMakeLists.txt
/oneTBB/examples/graph/binpack/CMakeLists.txt
/oneTBB/examples/graph/cholesky/CMakeLists.txt
/oneTBB/examples/graph/dining_philosophers/CMakeLists.txt
/oneTBB/examples/graph/fgbzip2/CMakeLists.txt
/oneTBB/examples/graph/logic_sim/CMakeLists.txt
/oneTBB/examples/graph/som/CMakeLists.txt
/oneTBB/examples/migration/recursive_fibonacci/CMakeLists.txt
/oneTBB/examples/parallel_for/game_of_life/CMakeLists.txt
/oneTBB/examples/parallel_for/polygon_overlay/CMakeLists.txt
/oneTBB/examples/parallel_for/seismic/CMakeLists.txt
/oneTBB/examples/parallel_for/tachyon/CMakeLists.txt
/oneTBB/examples/parallel_for_each/parallel_preorder/CMakeLists.txt
/oneTBB/examples/parallel_pipeline/square/CMakeLists.txt
/oneTBB/examples/parallel_reduce/README.md
/oneTBB/examples/parallel_reduce/convex_hull/CMakeLists.txt
/oneTBB/examples/parallel_reduce/pi/CMakeLists.txt
/oneTBB/examples/parallel_reduce/pi/README.md
/oneTBB/examples/parallel_reduce/pi/common.h
/oneTBB/examples/parallel_reduce/pi/main.cpp
/oneTBB/examples/parallel_reduce/pi/pi.cpp
/oneTBB/examples/parallel_reduce/primes/CMakeLists.txt
/oneTBB/examples/task_arena/fractal/CMakeLists.txt
/oneTBB/examples/task_group/sudoku/CMakeLists.txt
/oneTBB/examples/test_all/fibonacci/CMakeLists.txt
/oneTBB/include/oneapi/tbb/version.h
/oneTBB/integration/windows/nuget/inteltbb.devel.win.targets
tbb/CMakeLists.txt
/oneTBB/test/CMakeLists.txt
7eb68ae927-Sep-2023 Elias Engelbert Plank <[email protected]>

Fix compiler warning for missing virtual dtor (#1215)

This fixes issue #1210 by adding a default virtual destructor for tbb::detail::r1::control_storage.

Signed-off-by: Elias Engelbert Plank <pla

Fix compiler warning for missing virtual dtor (#1215)

This fixes issue #1210 by adding a default virtual destructor for tbb::detail::r1::control_storage.

Signed-off-by: Elias Engelbert Plank <[email protected]>

show more ...

a9d76a1712-Sep-2023 Ilya Lavrenov <[email protected]>

Allow pkg-config search for hwloc for cross-compilation (#1202)

e131071711-Sep-2023 Dmitri Mokhov <[email protected]>

Fix/suppress new GCC 12/13 warnings (#1192)

Signed-off-by: Dmitri Mokhov <[email protected]>

d0748d2901-Sep-2023 Ilya Isaev <[email protected]>

Remove code that is not used anymore (#1191)

Signed-off-by: Isaev, Ilya <[email protected]>

7b02265129-Aug-2023 Pavel Kumbrasev <[email protected]>

Fix thread request on arena::update_concurrency (#1188)

Signed-off-by: pavelkumbrasev <[email protected]>

fa6605fa25-Aug-2023 Vertexwahn <[email protected]>

Fix _WIN32 define (#1183)

By accident, the define was called WIN32 - should be _WIN32.
The string #if _WIN32 can be found more than 100 times in this repo - #if WIN32 only one time.
It breaks the

Fix _WIN32 define (#1183)

By accident, the define was called WIN32 - should be _WIN32.
The string #if _WIN32 can be found more than 100 times in this repo - #if WIN32 only one time.
It breaks the Bazel build of oneTBB on Windows (bazel build //...).

show more ...

3f1ecfe524-Aug-2023 JhaShweta1 <[email protected]>

copyright_failure: reverted back commit message (#1182)

* reverted back commit message

c4a799df23-Aug-2023 JhaShweta1 <[email protected]>

Spelling correction (#1179)

* codespell changes

3b37835618-Aug-2023 Krzysztof Filipek <[email protected]>

Add explicit methods to meet the "rule of zero/three/five"

Signed-off-by: Krzysztof Filipek <[email protected]>

c79ef1e516-Aug-2023 Krzysztof Filipek <[email protected]>

Add missing methods to RecursiveMallocCallProtector class

This commit adds missing methods to meet "the rule of three".

Signed-off-by: Krzysztof Filipek <[email protected]>

b40b034f16-Aug-2023 Krzysztof Filipek <[email protected]>

Add missing methods to scoped_lock class

This commit adds missing methods to meet "the rule of three".

Signed-off-by: Krzysztof Filipek <[email protected]>

b9a0ab4516-Aug-2023 Krzysztof Filipek <[email protected]>

Add missing methods to ThreadId class

This commit adds missing methods to meet "the rule of three".

Signed-off-by: Krzysztof Filipek <[email protected]>

568a7e5816-Aug-2023 Krzysztof Filipek <[email protected]>

Add missing methods to RegisterProcessShutdownNotification struct

This commit adds missing methods to meet "the rule of three".

Signed-off-by: Krzysztof Filipek <[email protected]>

706ad86718-Aug-2023 JhaShweta1 <[email protected]>

Update ittnotify to the latest version v3.24.2 (#1176)

* itt version update to v3.24.2

71e1bb8e17-Aug-2023 Pavel Kumbrasev <[email protected]>

Integration of Thread composability manager (#1163)

Add TCM support in oneTBB. oneTBB can coordinate with Intel(R) OpenMP on CPU resources usage to avoid excessive oversubscription when both runtim

Integration of Thread composability manager (#1163)

Add TCM support in oneTBB. oneTBB can coordinate with Intel(R) OpenMP on CPU resources usage to avoid excessive oversubscription when both runtimes are used within a process.

Signed-off-by: Isaev, Ilya <[email protected]>
Signed-off-by: pavelkumbrasev <[email protected]>
Co-authored-by: Ilya Isaev <[email protected]>
Co-authored-by: Aleksei Fedotov <[email protected]>

show more ...

4743eda210-Aug-2023 Lukasz Dorau <[email protected]>

Initialize uninitialized scalar field currTime

Initialize uninitialized scalar field currTime.
It fixes the Coverity issue #449478.

Signed-off-by: Lukasz Dorau <[email protected]>

83e4801910-Aug-2023 Lukasz Dorau <[email protected]>

Make lastAccessMiss a local variable

Make lastAccessMiss a local variable.
It fixes the Coverity issue #449482.

Signed-off-by: Lukasz Dorau <[email protected]>

900b99bb10-Aug-2023 Lukasz Dorau <[email protected]>

Initialize uninitialized scalar field currCacheIdx

Initialize uninitialized scalar field currCacheIdx.
It fixes the Coverity issue #449484.

Signed-off-by: Lukasz Dorau <[email protected]>

926c378309-Aug-2023 Lukasz Dorau <[email protected]>

Assert if a shift amount is negative

Shifting by a negative amount has an undefined behavior.
A shift amount must not be negative.

It fixes the Coverity issues: 449477 and 913889.

Signed-off-by: L

Assert if a shift amount is negative

Shifting by a negative amount has an undefined behavior.
A shift amount must not be negative.

It fixes the Coverity issues: 449477 and 913889.

Signed-off-by: Lukasz Dorau <[email protected]>

show more ...

ddc3bd0310-Aug-2023 Pavel Kumbrasev <[email protected]>

Close File before leave function (#1171)

Signed-off-by: pavelkumbrasev <[email protected]>

4992457d09-Aug-2023 Lukasz Dorau <[email protected]>

Verify size in alignToBin()

Size in alignToBin() must not be less than the StepFactor (8).

It fixes the Coverity issues: 449474 and 913880.

Signed-off-by: Lukasz Dorau <[email protected]>

123456