Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
KRM7 committed Sep 8, 2023
1 parent 74c6516 commit c627c5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
matrix:
build-type: [ Release, RelWithDebInfo ]
compiler: [
{ cxx: g++-11, pkgs: g++-11 libtbb-dev },
{ cxx: g++-12, pkgs: g++-12 libtbb-dev },
{ cxx: clang++-14, pkgs: clang-14 libtbb-dev },
{ cxx: clang++-15, pkgs: clang-15 libtbb-dev },
{ cxx: g++-11, pkgs: g++-11 libtbb-dev gdb },
{ cxx: g++-12, pkgs: g++-12 libtbb-dev gdb },
{ cxx: clang++-14, pkgs: clang-14 libtbb-dev gdb },
{ cxx: clang++-15, pkgs: clang-15 libtbb-dev gdb },
]

defaults:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
run: cmake --build . --parallel

- name: run-tests
run: ctest --output-on-failure --schedule-random
run: gdb -ex run ./unit_tests --args schedule-random

- name: install
run: sudo cmake --install .
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitizer: [ address, undefined ]
sanitizer: [ address, undefined, thread ]
include:
- cxx: clang++-15
pkgs: clang-15 llvm-15 libtbb-dev
Expand Down
14 changes: 1 addition & 13 deletions .tsan-supressions
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# Suppress warnings from Intel TBB
# (libstdc++ uses TBB to implement the parallel std algorithms)

# clang
race:^tbb::detail::d1::node::node
race:^tbb::detail::d1::tree_node::tree_node

Expand All @@ -12,12 +8,4 @@ race:^tbb::detail::d1::auto_partition_type::is_divisible
race:tbb::detail::d1::small_object_allocator::new_object
race:tbb::detail::d1::small_object_allocator::delete_object

race:tbb::detail::d1::dynamic_grainsize_mode<*>::check_being_stolen

race:^tbb::detail::d1::start_for<*>::finalize

# This supression is just supposed to be the first one, but the function name isnt always displayed properly in the stack trace
race:^tbb::detail::d1::start_for<*>::offer_work
race:tbb::detail::d1::auto_partitioner const>::offer_work(tbb::detail::d0::split&, tbb::detail::d1::execution_data&)

race:^tbb::detail::r1::isolate_within_arena
race:tbb::detail::d1::dynamic_grainsize_mode<*>::check_being_stolen

0 comments on commit c627c5d

Please sign in to comment.