1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
|
/*
Copyright (c) 2005-2025 Intel Corporation
Copyright (c) 2025 UXL Foundation Contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "common/test.h"
#include "common/utils.h"
#include "common/dummy_body.h"
#include "common/spin_barrier.h"
#include "common/utils_concurrency_limit.h"
#include "common/cpu_usertime.h"
#include "tbb/task.h"
#include "tbb/task_group.h"
#include "tbb/parallel_for.h"
#include "tbb/cache_aligned_allocator.h"
#include "tbb/global_control.h"
#include "tbb/concurrent_vector.h"
#include <atomic>
#include <thread>
#include <deque>
//! \file test_task.cpp
//! \brief Test for [internal] functionality
struct EmptyBody {
void operator()() const {}
};
#if _MSC_VER && !defined(__INTEL_COMPILER)
// unreachable code
#pragma warning( push )
#pragma warning( disable: 4702 )
#endif
template <typename Body = EmptyBody>
class CountingTask : public tbb::detail::d1::task {
public:
CountingTask( Body body, tbb::detail::d1::wait_context& wait ) : my_body(body), my_wait(wait) {}
CountingTask( tbb::detail::d1::wait_context& wait ) : my_wait(wait) {}
task* execute( tbb::detail::d1::execution_data& ) override {
++my_execute_counter;
my_body();
my_wait.release();
return nullptr;
}
task* cancel( tbb::detail::d1::execution_data& ) override {
++my_cancel_counter;
my_wait.release();
return nullptr;
}
static void reset() {
my_execute_counter = 0;
my_cancel_counter = 0;
}
static std::size_t execute_counter() { return my_execute_counter; }
static std::size_t cancel_counter() { return my_cancel_counter; }
private:
Body my_body;
tbb::detail::d1::wait_context& my_wait;
static std::atomic<std::size_t> my_execute_counter;
static std::atomic<std::size_t> my_cancel_counter;
}; // struct CountingTask
#if _MSC_VER && !defined(__INTEL_COMPILER)
#pragma warning( pop )
#endif // warning 4702 is back
template <typename Body>
std::atomic<std::size_t> CountingTask<Body>::my_execute_counter(0);
template <typename Body>
std::atomic<std::size_t> CountingTask<Body>::my_cancel_counter(0);
#if TBB_USE_EXCEPTIONS
void test_cancellation_on_exception( bool reset_ctx ) {
tbb::detail::d1::wait_context wait(1);
tbb::task_group_context test_context;
auto throw_body = [] {
throw 1;
};
CountingTask<decltype(throw_body)> task(throw_body, wait);
constexpr std::size_t iter_counter = 1000;
for (std::size_t i = 0; i < iter_counter; ++i) {
try {
tbb::detail::d1::execute_and_wait(task, test_context, wait, test_context);
} catch(int ex) {
REQUIRE(ex == 1);
}
if (reset_ctx) {
test_context.reset();
}
wait.reserve(1);
}
wait.release(1);
REQUIRE_MESSAGE(task.execute_counter() == (reset_ctx ? iter_counter : 1), "Some task was not executed");
REQUIRE_MESSAGE(task.cancel_counter() == iter_counter, "Some task was not canceled after the exception occurs");
task.reset();
}
#endif // TBB_USE_EXCEPTIONS
//! \brief \ref error_guessing
TEST_CASE("External threads sleep") {
if (utils::get_platform_max_threads() < 2) return;
utils::SpinBarrier barrier(2);
tbb::task_group test_gr;
test_gr.run([&] {
barrier.wait();
TestCPUUserTime(2);
});
barrier.wait();
test_gr.wait();
}
//! \brief \ref error_guessing
TEST_CASE("Test that task was executed p times") {
tbb::detail::d1::wait_context wait(1);
tbb::task_group_context test_context;
CountingTask<> test_task(wait);
constexpr std::size_t iter_counter = 10000;
for (std::size_t i = 0; i < iter_counter; ++i) {
tbb::detail::d1::execute_and_wait(test_task, test_context, wait, test_context);
wait.reserve(1);
}
wait.release(1);
REQUIRE_MESSAGE(CountingTask<>::execute_counter() == iter_counter, "The task was not executed necessary times");
REQUIRE_MESSAGE(CountingTask<>::cancel_counter() == 0, "Some instance of the task was canceled");
CountingTask<>::reset();
}
#if TBB_USE_EXCEPTIONS
//! \brief \ref error_guessing
TEST_CASE("Test cancellation on exception") {
test_cancellation_on_exception(/*reset_ctx = */true);
test_cancellation_on_exception(/*reset_ctx = */false);
}
#endif // TBB_USE_EXCEPTIONS
//! \brief \ref error_guessing
TEST_CASE("Simple test parallelism usage") {
std::uint32_t threads_num = static_cast<std::uint32_t>(utils::get_platform_max_threads());
utils::SpinBarrier barrier(threads_num);
auto barrier_wait = [&barrier] {
barrier.wait();
};
tbb::detail::d1::wait_context wait(threads_num);
tbb::detail::d1::task_group_context test_context;
using task_type = CountingTask<decltype(barrier_wait)>;
std::vector<task_type, tbb::cache_aligned_allocator<task_type>> vector_test_task(threads_num, task_type(barrier_wait, wait));
constexpr std::size_t iter_counter = 100;
for (std::size_t i = 0; i < iter_counter; ++i) {
for (std::size_t j = 0; j < threads_num; ++j) {
tbb::detail::d1::spawn(vector_test_task[j], test_context);
}
tbb::detail::d1::wait(wait, test_context);
wait.reserve(threads_num);
}
wait.release(threads_num);
REQUIRE_MESSAGE(task_type::execute_counter() == iter_counter * threads_num, "Some task was not executed");
REQUIRE_MESSAGE(task_type::cancel_counter() == 0, "Some task was canceled");
task_type::reset();
}
//! \brief \ref error_guessing
TEST_CASE("Test parallelism usage with parallel_for") {
std::uint32_t task_threads_num = static_cast<std::uint32_t>(utils::get_platform_max_threads());
utils::SpinBarrier barrier(task_threads_num);
auto barrier_wait = [&barrier] {
barrier.wait();
};
std::size_t pfor_iter_count = 10000;
std::atomic<std::size_t> pfor_counter(0);
auto parallel_for_func = [&pfor_counter, pfor_iter_count] {
tbb::parallel_for(tbb::blocked_range<std::size_t>(0, pfor_iter_count),
[&pfor_counter] (tbb::blocked_range<std::size_t>& range) {
for (auto it = range.begin(); it != range.end(); ++it) {
++pfor_counter;
}
}
);
};
tbb::detail::d1::wait_context wait(task_threads_num);
tbb::detail::d1::task_group_context test_context;
using task_type = CountingTask<decltype(barrier_wait)>;
std::vector<task_type, tbb::cache_aligned_allocator<task_type>> vector_test_task(task_threads_num, task_type(barrier_wait, wait));
constexpr std::size_t iter_count = 10;
constexpr std::size_t pfor_threads_num = 4;
for (std::size_t i = 0; i < iter_count; ++i) {
std::vector<std::thread> pfor_threads;
for (std::size_t j = 0; j < task_threads_num; ++j) {
tbb::detail::d1::spawn(vector_test_task[j], test_context);
}
for (std::size_t k = 0; k < pfor_threads_num; ++k) {
pfor_threads.emplace_back(parallel_for_func);
}
tbb::detail::d1::wait(wait, test_context);
for (auto& thread : pfor_threads) {
if (thread.joinable()) {
thread.join();
}
}
wait.reserve(task_threads_num);
}
wait.release(task_threads_num);
REQUIRE_MESSAGE(task_type::execute_counter() == task_threads_num * iter_count, "Some task was not executed");
REQUIRE_MESSAGE(task_type::cancel_counter() == 0, "Some task was canceled");
REQUIRE_MESSAGE(pfor_counter == iter_count * pfor_threads_num * pfor_iter_count, "Some parallel_for thread was not finished");
task_type::reset();
}
//! \brief \ref error_guessing
TEST_CASE("Test parallelism usage with spawn tasks in different threads") {
std::uint32_t threads_num = static_cast<std::uint32_t>(utils::get_platform_max_threads());
utils::SpinBarrier barrier(threads_num);
auto barrier_wait = [&barrier] {
barrier.wait();
};
tbb::detail::d1::wait_context wait(threads_num);
tbb::detail::d1::task_group_context test_context;
using task_type = CountingTask<decltype(barrier_wait)>;
std::vector<task_type, tbb::cache_aligned_allocator<task_type>> vector_test_task(threads_num, task_type(barrier_wait, wait));
auto thread_func = [&vector_test_task, &test_context] ( std::size_t idx ) {
tbb::detail::d1::spawn(vector_test_task[idx], test_context);
};
constexpr std::size_t iter_count = 10;
for (std::size_t i = 0; i < iter_count; ++i) {
std::vector<std::thread> threads;
for (std::size_t k = 0; k < threads_num - 1; ++k) {
threads.emplace_back(thread_func, k);
}
for (auto& thread : threads) {
if (thread.joinable()) {
thread.join();
}
}
tbb::detail::d1::execute_and_wait(vector_test_task[threads_num - 1], test_context, wait, test_context);
wait.reserve(threads_num);
}
wait.release(threads_num);
REQUIRE_MESSAGE(task_type::execute_counter() == iter_count * threads_num, "Some task was not executed");
REQUIRE_MESSAGE(task_type::cancel_counter() == 0, "Some task was canceled");
task_type::reset();
}
class SpawningTaskBody;
using SpawningTask = CountingTask<SpawningTaskBody>;
class SpawningTaskBody {
public:
using task_pool_type = std::vector<SpawningTask, tbb::cache_aligned_allocator<SpawningTask>>;
SpawningTaskBody( task_pool_type& task_pool, tbb::task_group_context& test_ctx )
: my_task_pool(task_pool), my_test_ctx(test_ctx) {}
void operator()() const {
std::size_t delta = 7;
std::size_t start_idx = my_current_task.fetch_add(delta);
if (start_idx < my_task_pool.size()) {
for (std::size_t idx = start_idx; idx != std::min(my_task_pool.size(), start_idx + delta); ++idx) {
tbb::detail::d1::spawn(my_task_pool[idx], my_test_ctx);
}
}
}
private:
task_pool_type& my_task_pool;
tbb::task_group_context& my_test_ctx;
static std::atomic<std::size_t> my_current_task;
}; // class SpawningTaskBody
std::atomic<std::size_t> SpawningTaskBody::my_current_task(0);
//! \brief \ref error_guessing
TEST_CASE("Actively adding tasks") {
std::uint32_t task_number = 500 * static_cast<std::uint32_t>(utils::get_platform_max_threads());
tbb::detail::d1::wait_context wait(task_number + 1);
tbb::task_group_context test_context;
SpawningTaskBody::task_pool_type task_pool;
SpawningTaskBody task_body{task_pool, test_context};
for (std::size_t i = 0; i < task_number; ++i) {
task_pool.emplace_back(task_body, wait);
}
SpawningTask first_task(task_body, wait);
tbb::detail::d1::execute_and_wait(first_task, test_context, wait, test_context);
REQUIRE_MESSAGE(SpawningTask::execute_counter() == task_number + 1, "Some tasks were not executed"); // Is it right?
REQUIRE_MESSAGE(SpawningTask::cancel_counter() == 0, "Some tasks were canceled");
}
#if __TBB_RESUMABLE_TASKS
struct suspended_task : public tbb::detail::d1::task {
suspended_task(tbb::task::suspend_point tag, tbb::detail::d1::wait_context& wait)
: my_suspend_tag(tag), my_wait(wait)
{}
task* execute(tbb::detail::d1::execution_data&) override {
tbb::parallel_for(tbb::blocked_range<std::size_t>(0, 100000),
[] (const tbb::blocked_range<std::size_t>& range) {
// Make some heavy work
std::atomic<int> sum{};
for (auto it = range.begin(); it != range.end(); ++it) {
++sum;
}
},
tbb::static_partitioner{}
);
my_wait.release();
tbb::task::resume(my_suspend_tag);
return nullptr;
}
task* cancel(tbb::detail::d1::execution_data&) override {
FAIL("The function should never be called.");
return nullptr;
}
tbb::task::suspend_point my_suspend_tag;
tbb::detail::d1::wait_context& my_wait;
};
//! \brief \ref error_guessing
TEST_CASE("Isolation + resumable tasks") {
std::atomic<int> suspend_flag{};
tbb::task_group_context test_context;
std::atomic<int> suspend_count{};
std::atomic<int> resume_count{};
tbb::parallel_for(tbb::blocked_range<std::size_t>(0, 100000),
[&suspend_flag, &test_context, &suspend_count, &resume_count] (const tbb::blocked_range<std::size_t>& range) {
int ticket = 0;
for (auto it = range.begin(); it != range.end(); ++it) {
ticket = suspend_flag++;
}
if (ticket % 5 == 0) {
std::vector<suspended_task, tbb::cache_aligned_allocator<suspended_task>> test_task;
tbb::detail::d1::wait_context wait(1);
++suspend_count;
tbb::this_task_arena::isolate([&wait, &test_context, &test_task] {
auto thread_id = std::this_thread::get_id();
tbb::task::suspend([&wait, &test_context, &test_task, thread_id] (tbb::task::suspend_point tag) {
CHECK(thread_id == std::this_thread::get_id());
test_task.emplace_back(tag, wait);
tbb::detail::d1::spawn(test_task[0], test_context);
});
}
);
tbb::detail::d1::wait(wait, test_context);
++resume_count;
}
}
);
CHECK(suspend_count == resume_count);
}
struct bypass_task : public tbb::detail::d1::task {
using task_pool_type = std::vector<bypass_task, tbb::cache_aligned_allocator<bypass_task>>;
bypass_task(tbb::detail::d1::wait_context& wait, task_pool_type& task_pool,
std::atomic<int>& resume_flag, tbb::task::suspend_point& suspend_tag)
: my_wait(wait), my_task_pool(task_pool), my_resume_flag(resume_flag), my_suspend_tag(suspend_tag)
{}
task* execute(tbb::detail::d1::execution_data&) override {
utils::doDummyWork(10000);
int expected = 1;
if (my_resume_flag.compare_exchange_strong(expected, 2)) {
tbb::task::resume(my_suspend_tag);
}
std::size_t ticket = my_current_task++;
task* next = ticket < my_task_pool.size() ? &my_task_pool[ticket] : nullptr;
if (!next && my_resume_flag != 2) {
// Rarely all tasks can be executed before the suspend.
// So, wait for the suspend before leaving.
utils::SpinWaitWhileEq(my_resume_flag, 0);
expected = 1;
if (my_resume_flag.compare_exchange_strong(expected, 2)) {
tbb::task::resume(my_suspend_tag);
}
}
my_wait.release();
return next;
}
task* cancel(tbb::detail::d1::execution_data&) override {
FAIL("The function should never be called.");
return nullptr;
}
tbb::detail::d1::wait_context& my_wait;
task_pool_type& my_task_pool;
std::atomic<int>& my_resume_flag;
tbb::task::suspend_point& my_suspend_tag;
static std::atomic<int> my_current_task;
};
std::atomic<int> bypass_task::my_current_task(0);
thread_local int test_tls = 0;
//! \brief \ref error_guessing
TEST_CASE("Bypass suspended by resume") {
std::uint32_t task_number = 500 * static_cast<std::uint32_t>(utils::get_platform_max_threads());
tbb::task_group_context test_context;
tbb::detail::d1::wait_context wait(task_number + 1);
test_tls = 1;
std::atomic<int> resume_flag{0};
tbb::task::suspend_point test_suspend_tag;
std::vector<bypass_task, tbb::cache_aligned_allocator<bypass_task>> test_task_pool;
for (std::size_t i = 0; i < task_number; ++i) {
test_task_pool.emplace_back(wait, test_task_pool, resume_flag, test_suspend_tag);
}
for (std::size_t i = 0; i < utils::get_platform_max_threads(); ++i) {
std::size_t ticket = bypass_task::my_current_task++;
if (ticket < test_task_pool.size()) {
tbb::detail::d1::spawn(test_task_pool[ticket], test_context);
}
}
auto suspend_func = [&resume_flag, &test_suspend_tag] {
auto thread_id = std::this_thread::get_id();
tbb::task::suspend([&resume_flag, &test_suspend_tag, thread_id] (tbb::task::suspend_point tag) {
CHECK(thread_id == std::this_thread::get_id());
test_suspend_tag = tag;
resume_flag = 1;
});
};
using task_type = CountingTask<decltype(suspend_func)>;
task_type suspend_task(suspend_func, wait);
tbb::detail::d1::execute_and_wait(suspend_task, test_context, wait, test_context);
CHECK(bypass_task::my_current_task >= test_task_pool.size());
REQUIRE_MESSAGE(test_tls == 1, "The wrong thread came out");
}
//! \brief \ref error_guessing
TEST_CASE("Critical tasks + resume") {
std::uint32_t task_number = 500 * static_cast<std::uint32_t>(utils::get_platform_max_threads());
tbb::task_group_context test_context;
tbb::detail::d1::wait_context wait{ 0 };
// The test expects at least one thread in test_arena
int num_threads_in_test_arena = std::max(2, int(utils::get_platform_max_threads()));
tbb::global_control thread_limit(tbb::global_control::max_allowed_parallelism, num_threads_in_test_arena);
tbb::task_arena test_arena(num_threads_in_test_arena);
test_arena.initialize();
std::atomic<bool> resume_flag{}, resumed{};
tbb::task::suspend_point test_suspend_tag;
auto task_body = [&resume_flag, &resumed, &test_suspend_tag] {
// Make some work
utils::doDummyWork(1000);
if (resume_flag.exchange(false)) {
tbb::task::resume(test_suspend_tag);
resumed = true;
}
};
using task_type = CountingTask<decltype(task_body)>;
std::vector<task_type, tbb::cache_aligned_allocator<task_type>> test_tasks;
for (std::size_t i = 0; i < task_number; ++i) {
test_tasks.emplace_back(task_body, wait);
}
wait.reserve(task_number / 2);
for (std::size_t i = 0; i < task_number / 2; ++i) {
submit(test_tasks[i], test_arena, test_context, true);
}
auto suspend_func = [&resume_flag, &test_suspend_tag] {
auto thread_id = std::this_thread::get_id();
tbb::task::suspend([&resume_flag, &test_suspend_tag, thread_id] (tbb::task::suspend_point tag) {
CHECK(thread_id == std::this_thread::get_id());
test_suspend_tag = tag;
resume_flag.store(true, std::memory_order_release);
});
};
using suspend_task_type = CountingTask<decltype(suspend_func)>;
suspend_task_type suspend_task(suspend_func, wait);
wait.reserve(1);
submit(suspend_task, test_arena, test_context, true);
test_arena.execute([&wait, &test_tasks, &test_arena, &test_context, &resumed, task_number] {
tbb::this_task_arena::isolate([&wait, &test_tasks, &test_arena, &test_context, &resumed, task_number] {
do {
wait.reserve(task_number / 2);
tbb::parallel_for(tbb::blocked_range<std::size_t>(task_number / 2, task_number),
[&test_tasks, &test_arena, &test_context] (tbb::blocked_range<std::size_t>& range) {
for (std::size_t i = range.begin(); i != range.end(); ++i) {
submit(test_tasks[i], test_arena, test_context, true);
}
}
);
} while (!resumed);
});
});
test_arena.execute([&wait, &test_context] {
tbb::detail::d1::wait(wait, test_context);
});
}
//! \brief \ref error_guessing
TEST_CASE("Stress testing") {
std::uint32_t task_number = static_cast<std::uint32_t>(utils::get_platform_max_threads());
tbb::task_group_context test_context;
tbb::detail::d1::wait_context wait(task_number);
tbb::task_arena test_arena;
test_arena.initialize();
auto task_body = [] {
tbb::parallel_for(tbb::blocked_range<std::size_t>(0, 1000), [] (tbb::blocked_range<std::size_t>&) {
utils::doDummyWork(100);
});
};
using task_type = CountingTask<decltype(task_body)>;
std::size_t iter_counter = 20;
std::vector<task_type, tbb::cache_aligned_allocator<task_type>> test_tasks;
for (std::size_t j = 0; j < task_number; ++j) {
test_tasks.emplace_back(task_body, wait);
}
test_arena.execute([&test_tasks, &task_body, &wait, &test_context, &test_arena, iter_counter, task_number] {
for (std::size_t i = 0; i < iter_counter; ++i) {
for (std::size_t j = 0; j < task_number; ++j) {
test_arena.enqueue(task_body);
}
for (std::size_t j = 0; j < task_number / 2; ++j) {
tbb::detail::d1::spawn(test_tasks[j], test_context);
}
for (std::size_t j = task_number / 2; j < task_number; ++j) {
submit(test_tasks[j], test_arena, test_context, true);
}
tbb::detail::d1::wait(wait, test_context);
wait.reserve(task_number);
}
wait.release(task_number);
});
REQUIRE_MESSAGE(task_type::execute_counter() == task_number * iter_counter, "Some task was not executed");
REQUIRE_MESSAGE(task_type::cancel_counter() == 0, "Some task was canceled");
}
//! \brief \ref error_guessing
TEST_CASE("All workers sleep") {
std::uint32_t thread_number = static_cast<std::uint32_t>(utils::get_platform_max_threads());
tbb::concurrent_vector<tbb::task::suspend_point> suspend_points;
tbb::task_group test_gr;
utils::SpinBarrier barrier(thread_number);
auto resumble_task = [&] {
barrier.wait();
auto thread_id = std::this_thread::get_id();
tbb::task::suspend([&] (tbb::task::suspend_point sp) {
CHECK(thread_id == std::this_thread::get_id());
suspend_points.push_back(sp);
barrier.wait();
});
};
for (std::size_t i = 0; i < thread_number - 1; ++i) {
test_gr.run(resumble_task);
}
barrier.wait();
barrier.wait();
TestCPUUserTime(thread_number);
for (auto sp : suspend_points)
tbb::task::resume(sp);
test_gr.wait();
}
#endif // __TBB_RESUMABLE_TASKS
//! \brief \ref error_guessing
TEST_CASE("Enqueue with exception") {
std::uint32_t task_number = 500 * static_cast<std::uint32_t>(utils::get_platform_max_threads());
tbb::task_group_context test_context;
tbb::detail::d1::wait_context wait(task_number);
tbb::task_arena test_arena{int(std::thread::hardware_concurrency() + 1)};
test_arena.initialize();
auto task_body = [] {
utils::doDummyWork(100);
};
std::atomic<bool> end_flag{false};
auto check_body = [&end_flag] {
end_flag.store(true, std::memory_order_relaxed);
};
using task_type = CountingTask<decltype(task_body)>;
std::vector<task_type, tbb::cache_aligned_allocator<task_type>> test_tasks;
for (std::size_t j = 0; j < task_number; ++j) {
test_tasks.emplace_back(task_body, wait);
}
{
tbb::global_control gc(tbb::global_control::max_allowed_parallelism, 1);
test_arena.enqueue(task_body);
// Initialize implicit arena
tbb::parallel_for(0, 1, [] (int) {});
tbb::task_arena test_arena2(tbb::task_arena::attach{});
test_arena2.enqueue(task_body);
}
constexpr std::size_t iter_count = 10;
for (std::size_t k = 0; k < iter_count; ++k) {
tbb::global_control gc(tbb::global_control::max_allowed_parallelism, 1);
test_arena.enqueue(check_body);
while (!end_flag.load(std::memory_order_relaxed)) ;
utils::Sleep(1);
end_flag.store(false, std::memory_order_relaxed);
test_arena.execute([&test_tasks, &wait, &test_context, task_number] {
for (std::size_t j = 0; j < task_number; ++j) {
tbb::detail::d1::spawn(test_tasks[j], test_context);
}
tbb::detail::d1::wait(wait, test_context);
wait.reserve(task_number);
});
}
wait.release(task_number);
REQUIRE_MESSAGE(task_type::execute_counter() == task_number * iter_count, "Some task was not executed");
REQUIRE_MESSAGE(task_type::cancel_counter() == 0, "Some task was canceled");
}
struct resubmitting_task : public tbb::detail::d1::task {
tbb::task_arena& my_arena;
tbb::task_group_context& my_ctx;
std::atomic<int> counter{100000};
resubmitting_task(tbb::task_arena& arena, tbb::task_group_context& ctx) : my_arena(arena), my_ctx(ctx)
{}
tbb::detail::d1::task* execute(tbb::detail::d1::execution_data& ) override {
if (counter-- > 0) {
submit(*this, my_arena, my_ctx, true);
}
return nullptr;
}
tbb::detail::d1::task* cancel( tbb::detail::d1::execution_data& ) override {
FAIL("The function should never be called.");
return nullptr;
}
};
//! \brief \ref error_guessing
TEST_CASE("Test with priority inversion") {
if (!utils::can_change_thread_priority()) return;
std::uint32_t thread_number = static_cast<std::uint32_t>(utils::get_platform_max_threads());
tbb::global_control gc(tbb::global_control::max_allowed_parallelism, thread_number + 1);
tbb::task_arena test_arena(2 * thread_number, thread_number);
test_arena.initialize();
utils::pinning_observer obsr(test_arena);
CHECK_MESSAGE(obsr.is_observing(), "Arena observer has not been activated");
std::uint32_t critical_task_counter = 1000 * thread_number;
std::atomic<std::size_t> task_counter{0};
tbb::task_group_context test_context;
tbb::detail::d1::wait_context wait(critical_task_counter);
auto critical_work = [&] {
utils::doDummyWork(10);
};
using suspend_task_type = CountingTask<decltype(critical_work)>;
suspend_task_type critical_task(critical_work, wait);
auto high_priority_thread_func = [&] {
// Increase external threads priority
utils::increased_priority_guard guard{};
utils::suppress_unused_warning(guard);
// pin external threads
test_arena.execute([]{});
while (task_counter++ < critical_task_counter) {
submit(critical_task, test_arena, test_context, true);
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
};
resubmitting_task worker_task(test_arena, test_context);
// warm up
// take first core on execute
utils::SpinBarrier barrier(thread_number + 1);
test_arena.execute([&] {
tbb::parallel_for(std::uint32_t(0), thread_number + 1, [&] (std::uint32_t) {
barrier.wait();
submit(worker_task, test_arena, test_context, true);
});
});
std::vector<std::thread> high_priority_threads;
for (std::size_t i = 0; i < thread_number - 1; ++i) {
high_priority_threads.emplace_back(high_priority_thread_func);
}
utils::increased_priority_guard guard{};
utils::suppress_unused_warning(guard);
while (task_counter++ < critical_task_counter) {
submit(critical_task, test_arena, test_context, true);
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
tbb::detail::d1::wait(wait, test_context);
for (std::size_t i = 0; i < thread_number - 1; ++i) {
high_priority_threads[i].join();
}
}
// Explicit test for raii_guard move ctor because of copy elision optimization
// TODO: consider better test file for the test case
//! \brief \ref interface
TEST_CASE("raii_guard move ctor") {
int count{0};
auto func = [&count] {
count++;
CHECK(count == 1);
};
tbb::detail::d0::raii_guard<decltype(func)> guard1(func);
tbb::detail::d0::raii_guard<decltype(func)> guard2(std::move(guard1));
}
//! \brief \ref error_guessing
TEST_CASE("Check correct arena destruction with enqueue") {
for (int i = 0; i < 100; ++i) {
tbb::task_scheduler_handle handle{ tbb::attach{} };
{
tbb::task_arena a(2, 0);
a.enqueue([] {
tbb::parallel_for(0, 100, [] (int) { std::this_thread::sleep_for(std::chrono::nanoseconds(10)); });
});
std::this_thread::sleep_for(std::chrono::microseconds(1));
}
tbb::finalize(handle, std::nothrow_t{});
}
}
//! \brief \ref regression
TEST_CASE("Try to force Leaked proxy observers warning") {
int num_threads = std::thread::hardware_concurrency() * 2;
tbb::global_control gc(tbb::global_control::max_allowed_parallelism, num_threads);
tbb::task_arena arena(num_threads, 0);
std::deque<tbb::task_scheduler_observer> observers;
for (int i = 0; i < 1000; ++i) {
observers.emplace_back(arena);
}
for (auto& observer : observers) {
observer.observe(true);
}
arena.enqueue([] {
tbb::parallel_for(0, 100000, [] (int) {
utils::doDummyWork(1000);
});
});
}
//! \brief \ref error_guessing
TEST_CASE("Force thread limit on per-thread reference_vertex") {
int num_threads = std::thread::hardware_concurrency();
int num_groups = 1000;
// Force thread limit on per-thread reference_vertex
std::vector<tbb::task_group> groups(num_groups);
tbb::parallel_for(0, num_threads, [&] (int) {
std::vector<tbb::task_group> local_groups(num_groups);
for (int i = 0; i < num_groups; ++i) {
groups[i].run([] {});
local_groups[i].run([] {});
local_groups[i].wait();
}
}, tbb::static_partitioner{});
// Enforce extra reference on each task_group
std::deque<tbb::task_handle> handles{};
for (int i = 0; i < num_groups; ++i) {
handles.emplace_back(groups[i].defer([] {}));
}
// Check correctness of the execution
tbb::task_group group;
std::atomic<int> final_sum{};
for (int i = 0; i < num_groups; ++i) {
group.run([&] { ++final_sum; });
}
group.wait();
REQUIRE_MESSAGE(final_sum == num_groups, "Some tasks were not executed");
for (int i = 0; i < num_groups; ++i) {
groups[i].run(std::move(handles[i]));
}
for (int i = 0; i < num_groups; ++i) {
groups[i].wait();
}
}
constexpr std::size_t max_current_task_ptr_test_depth = 10;
enum current_task_ptr_submit_type {
execute_and_wait,
submit_non_critical,
submit_critical,
slot_spawn,
enqueue
};
struct current_task_ptr_checking_task : public tbb::detail::d1::task {
current_task_ptr_checking_task(std::size_t d, tbb::task_arena& a, tbb::detail::d1::wait_context& wtc,
tbb::task_group_context& ctx, current_task_ptr_submit_type tag)
: depth(d), arena(a), wait_context(wtc), task_group_ctx(ctx), submit_tag(tag) {}
void submit_and_wait(current_task_ptr_checking_task& t, tbb::detail::d1::wait_context& wait_ctx) {
switch (submit_tag) {
case current_task_ptr_submit_type::execute_and_wait: {
tbb::detail::d1::execute_and_wait(t, task_group_ctx, wait_ctx, task_group_ctx);
break;
} case current_task_ptr_submit_type::submit_non_critical: {
submit(t, arena, task_group_ctx, false);
break;
} case current_task_ptr_submit_type::submit_critical: {
submit(t, arena, task_group_ctx, true);
break;
} case current_task_ptr_submit_type::slot_spawn: {
auto task_slot = tbb::detail::d1::slot_id(tbb::this_task_arena::current_thread_index() + 1 % tbb::this_task_arena::max_concurrency());
tbb::detail::d1::spawn(t, task_group_ctx, task_slot);
break;
} case current_task_ptr_submit_type::enqueue: {
tbb::detail::r1::enqueue(t, task_group_ctx, &arena);
break;
} default:
CHECK(false);
}
if (submit_tag != current_task_ptr_submit_type::execute_and_wait) {
arena.execute([&] {
tbb::detail::r1::wait(wait_ctx, task_group_ctx);
});
}
}
tbb::detail::d1::task* execute(tbb::detail::d1::execution_data&) override {
++execute_count;
REQUIRE_MESSAGE(tbb::detail::d1::current_task_ptr() == this,
"Incorrect task returned from current_task_ptr");
if (depth < max_current_task_ptr_test_depth) {
tbb::detail::d1::wait_context next_task_wait_context(1);
current_task_ptr_checking_task next_task(depth + 1, arena, next_task_wait_context, task_group_ctx, submit_tag);
submit_and_wait(next_task, next_task_wait_context);
REQUIRE_MESSAGE(tbb::detail::d1::current_task_ptr() == this,
"Incorrect task returned from current_task_ptr");
}
wait_context.release();
return nullptr;
}
tbb::detail::d1::task* cancel(tbb::detail::d1::execution_data&) override {
REQUIRE_MESSAGE(tbb::detail::d1::current_task_ptr() == this,
"Incorrect task returned from current_task_ptr");
++cancel_count;
wait_context.release();
return nullptr;
}
static std::atomic<std::size_t> execute_count;
static std::atomic<std::size_t> cancel_count;
std::size_t depth;
tbb::task_arena& arena;
tbb::detail::d1::wait_context& wait_context;
tbb::task_group_context& task_group_ctx;
current_task_ptr_submit_type submit_tag;
};
std::atomic<std::size_t> current_task_ptr_checking_task::execute_count{0};
std::atomic<std::size_t> current_task_ptr_checking_task::cancel_count{0};
void test_current_task_ptr_base(current_task_ptr_submit_type submit_tag, bool test_cancel) {
tbb::task_arena arena;
arena.initialize();
tbb::task_group_context test_context;
constexpr std::size_t num_start_tasks = 5;
tbb::detail::d1::wait_context root_task_wait(num_start_tasks);
REQUIRE_MESSAGE(tbb::detail::d1::current_task_ptr() == nullptr,
"Incorrect task returned from current_task_ptr");
using task_type = current_task_ptr_checking_task;
std::vector<task_type, tbb::cache_aligned_allocator<task_type>> start_tasks;
start_tasks.reserve(num_start_tasks);
for (std::size_t i = 0; i < num_start_tasks; ++i) {
start_tasks.emplace_back(0, arena, root_task_wait, test_context, submit_tag);
submit(start_tasks.back(), arena, test_context, false);
if (test_cancel && i == num_start_tasks / 2) {
test_context.cancel_group_execution();
}
}
arena.execute([&] {
tbb::detail::d1::wait(root_task_wait, test_context);
});
std::size_t expected_tasks_count = max_current_task_ptr_test_depth * num_start_tasks + num_start_tasks;
if (test_cancel) {
REQUIRE_MESSAGE(task_type::cancel_count > 0, "Some tasks should be cancelled");
REQUIRE_MESSAGE(task_type::execute_count + task_type::cancel_count < expected_tasks_count,
"Incorrect number of tasks executed or cancelled");
} else {
REQUIRE_MESSAGE(task_type::cancel_count == 0, "No tasks should be cancelled");
REQUIRE_MESSAGE(task_type::execute_count == expected_tasks_count, "Incorrect number of tasks executed");
}
task_type::execute_count = 0;
task_type::cancel_count = 0;
}
void test_current_task_ptr(bool test_cancel) {
test_current_task_ptr_base(current_task_ptr_submit_type::execute_and_wait, test_cancel);
test_current_task_ptr_base(current_task_ptr_submit_type::submit_non_critical, test_cancel);
test_current_task_ptr_base(current_task_ptr_submit_type::submit_critical, test_cancel);
test_current_task_ptr_base(current_task_ptr_submit_type::slot_spawn, test_cancel);
test_current_task_ptr_base(current_task_ptr_submit_type::enqueue, test_cancel);
}
//! \brief \ref error_guessing
TEST_CASE("Test current_task_ptr") {
test_current_task_ptr(/*test_cancel = */false);
test_current_task_ptr(/*test_cancel = */true);
}
|