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
|
/*
Copyright (c) 2021-2024 Intel Corporation
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/config.h"
#include <oneapi/tbb/task_arena.h>
#include <oneapi/tbb/concurrent_vector.h>
#include <oneapi/tbb/rw_mutex.h>
#include <oneapi/tbb/task_group.h>
#include <oneapi/tbb/parallel_for.h>
#include <oneapi/tbb/global_control.h>
#include "common/test.h"
#include "common/utils.h"
#include "common/utils_concurrency_limit.h"
#include "common/spin_barrier.h"
#include <stdlib.h> // C11/POSIX aligned_alloc
#include <random>
//! \file test_scheduler_mix.cpp
//! \brief Test for [scheduler.task_arena scheduler.task_scheduler_observer] specification
const std::uint64_t maxNumActions = 1 * 100 * 1000;
static std::atomic<std::uint64_t> globalNumActions{};
//using Random = utils::FastRandom<>;
class Random {
struct State {
std::random_device rd;
std::mt19937 gen;
std::uniform_int_distribution<> dist;
State() : gen(rd()), dist(0, std::numeric_limits<unsigned short>::max()) {}
int get() {
return dist(gen);
}
};
static thread_local State* mState;
tbb::concurrent_vector<State*> mStateList;
public:
~Random() {
for (auto s : mStateList) {
delete s;
}
}
int get() {
auto& s = mState;
if (!s) {
s = new State;
mStateList.push_back(s);
}
return s->get();
}
};
thread_local Random::State* Random::mState = nullptr;
void* aligned_malloc(std::size_t alignment, std::size_t size) {
#if _WIN32
return _aligned_malloc(size, alignment);
#elif __unix__ || __APPLE__
void* ptr{};
int res = posix_memalign(&ptr, alignment, size);
CHECK(res == 0);
return ptr;
#else
return aligned_alloc(alignment, size);
#endif
}
void aligned_free(void* ptr) {
#if _WIN32
_aligned_free(ptr);
#else
free(ptr);
#endif
}
template <typename T, std::size_t Alignment>
class PtrRWMutex {
static const std::size_t maxThreads = (Alignment >> 1) - 1;
static const std::uintptr_t READER_MASK = maxThreads; // 7F..
static const std::uintptr_t LOCKED = Alignment - 1; // FF..
static const std::uintptr_t LOCKED_MASK = LOCKED; // FF..
static const std::uintptr_t LOCK_PENDING = READER_MASK + 1; // 80..
std::atomic<std::uintptr_t> mState;
T* pointer() {
return reinterpret_cast<T*>(state() & ~LOCKED_MASK);
}
std::uintptr_t state() {
return mState.load(std::memory_order_relaxed);
}
public:
class ScopedLock {
public:
constexpr ScopedLock() : mMutex(nullptr), mIsWriter(false) {}
//! Acquire lock on given mutex.
ScopedLock(PtrRWMutex& m, bool write = true) : mMutex(nullptr) {
CHECK_FAST(write == true);
acquire(m);
}
//! Release lock (if lock is held).
~ScopedLock() {
if (mMutex) {
release();
}
}
//! No Copy
ScopedLock(const ScopedLock&) = delete;
ScopedLock& operator=(const ScopedLock&) = delete;
//! Acquire lock on given mutex.
void acquire(PtrRWMutex& m) {
CHECK_FAST(mMutex == nullptr);
mIsWriter = true;
mMutex = &m;
mMutex->lock();
}
//! Try acquire lock on given mutex.
bool tryAcquire(PtrRWMutex& m, bool write = true) {
bool succeed = write ? m.tryLock() : m.tryLockShared();
if (succeed) {
mMutex = &m;
mIsWriter = write;
}
return succeed;
}
void clear() {
CHECK_FAST(mMutex != nullptr);
CHECK_FAST(mIsWriter);
PtrRWMutex* m = mMutex;
mMutex = nullptr;
m->clear();
}
//! Release lock.
void release() {
CHECK_FAST(mMutex != nullptr);
PtrRWMutex* m = mMutex;
mMutex = nullptr;
if (mIsWriter) {
m->unlock();
}
else {
m->unlockShared();
}
}
protected:
PtrRWMutex* mMutex{};
bool mIsWriter{};
};
bool trySet(T* ptr) {
auto p = reinterpret_cast<std::uintptr_t>(ptr);
CHECK_FAST((p & (Alignment - 1)) == 0);
if (!state()) {
std::uintptr_t expected = 0;
if (mState.compare_exchange_strong(expected, p)) {
return true;
}
}
return false;
}
void clear() {
CHECK_FAST((state() & LOCKED_MASK) == LOCKED);
mState.store(0, std::memory_order_relaxed);
}
bool tryLock() {
auto v = state();
if (v == 0) {
return false;
}
CHECK_FAST((v & LOCKED_MASK) == LOCKED || (v & READER_MASK) < maxThreads);
if ((v & READER_MASK) == 0) {
if (mState.compare_exchange_strong(v, v | LOCKED)) {
return true;
}
}
return false;
}
bool tryLockShared() {
auto v = state();
if (v == 0) {
return false;
}
CHECK_FAST((v & LOCKED_MASK) == LOCKED || (v & READER_MASK) < maxThreads);
if ((v & LOCKED_MASK) != LOCKED && (v & LOCK_PENDING) == 0) {
if (mState.compare_exchange_strong(v, v + 1)) {
return true;
}
}
return false;
}
void lock() {
auto v = state();
mState.compare_exchange_strong(v, v | LOCK_PENDING);
while (!tryLock()) {
utils::yield();
}
}
void unlock() {
auto v = state();
CHECK_FAST((v & LOCKED_MASK) == LOCKED);
mState.store(v & ~LOCKED, std::memory_order_release);
}
void unlockShared() {
auto v = state();
CHECK_FAST((v & LOCKED_MASK) != LOCKED);
CHECK_FAST((v & READER_MASK) > 0);
mState -= 1;
}
operator bool() const {
return pointer() != 0;
}
T* get() {
return pointer();
}
};
class Statistics {
public:
enum ACTION {
ArenaCreate,
ArenaDestroy,
ArenaAcquire,
skippedArenaCreate,
skippedArenaDestroy,
skippedArenaAcquire,
ParallelAlgorithm,
ArenaEnqueue,
ArenaExecute,
numActions
};
static const char* const mStatNames[numActions];
private:
struct StatType {
StatType() : mCounters() {}
std::array<std::uint64_t, numActions> mCounters;
};
tbb::concurrent_vector<StatType*> mStatsList;
static thread_local StatType* mStats;
StatType& get() {
auto& s = mStats;
if (!s) {
s = new StatType;
mStatsList.push_back(s);
}
return *s;
}
public:
~Statistics() {
for (auto s : mStatsList) {
delete s;
}
}
void notify(ACTION a) {
++get().mCounters[a];
}
void report() {
StatType summary;
for (auto& s : mStatsList) {
for (int i = 0; i < numActions; ++i) {
summary.mCounters[i] += s->mCounters[i];
}
}
std::cout << std::endl << "Statistics:" << std::endl;
std::cout << "Total actions: " << globalNumActions << std::endl;
for (int i = 0; i < numActions; ++i) {
std::cout << mStatNames[i] << ": " << summary.mCounters[i] << std::endl;
}
}
};
const char* const Statistics::mStatNames[Statistics::numActions] = {
"Arena create", "Arena destroy", "Arena acquire",
"Skipped arena create", "Skipped arena destroy", "Skipped arena acquire",
"Parallel algorithm", "Arena enqueue", "Arena execute"
};
thread_local Statistics::StatType* Statistics::mStats;
static Statistics gStats;
class LifetimeTracker {
public:
LifetimeTracker() = default;
class Guard {
public:
Guard(LifetimeTracker* obj) {
if (!(obj->mReferences.load(std::memory_order_relaxed) & SHUTDOWN_FLAG)) {
if (obj->mReferences.fetch_add(REFERENCE_FLAG) & SHUTDOWN_FLAG) {
obj->mReferences.fetch_sub(REFERENCE_FLAG);
} else {
mObj = obj;
}
}
}
Guard(Guard&& ing) : mObj(ing.mObj) {
ing.mObj = nullptr;
}
~Guard() {
if (mObj != nullptr) {
mObj->mReferences.fetch_sub(REFERENCE_FLAG);
}
}
bool continue_execution() {
return mObj != nullptr;
}
private:
LifetimeTracker* mObj{nullptr};
};
Guard makeGuard() {
return Guard(this);
}
void signalShutdown() {
mReferences.fetch_add(SHUTDOWN_FLAG);
}
void waitCompletion() {
utils::SpinWaitUntilEq(mReferences, SHUTDOWN_FLAG);
}
private:
friend class Guard;
static constexpr std::uintptr_t SHUTDOWN_FLAG = 1;
static constexpr std::uintptr_t REFERENCE_FLAG = 1 << 1;
std::atomic<std::uintptr_t> mReferences{};
};
class ArenaTable {
static const std::size_t maxArenas = 64;
static const std::size_t maxThreads = 1 << 9;
static const std::size_t arenaAligment = maxThreads << 1;
using ArenaPtrRWMutex = PtrRWMutex<tbb::task_arena, arenaAligment>;
std::array<ArenaPtrRWMutex, maxArenas> mArenaTable;
struct ThreadState {
bool lockedArenas[maxArenas]{};
int arenaIdxStack[maxArenas];
int level{};
};
LifetimeTracker mLifetimeTracker{};
static thread_local ThreadState mThreadState;
template <typename F>
auto find_arena(std::size_t start, F f) -> decltype(f(std::declval<ArenaPtrRWMutex&>(), std::size_t{})) {
for (std::size_t idx = start, i = 0; i < maxArenas; ++i, idx = (idx + 1) % maxArenas) {
auto res = f(mArenaTable[idx], idx);
if (res) {
return res;
}
}
return {};
}
public:
using ScopedLock = ArenaPtrRWMutex::ScopedLock;
void create(Random& rnd) {
auto guard = mLifetimeTracker.makeGuard();
if (guard.continue_execution()) {
int num_threads = rnd.get() % utils::get_platform_max_threads() + 1;
unsigned int num_reserved = rnd.get() % num_threads;
tbb::task_arena::priority priorities[] = { tbb::task_arena::priority::low , tbb::task_arena::priority::normal, tbb::task_arena::priority::high };
tbb::task_arena::priority priority = priorities[rnd.get() % 3];
tbb::task_arena* a = new (aligned_malloc(arenaAligment, arenaAligment)) tbb::task_arena{ num_threads , num_reserved , priority };
if (!find_arena(rnd.get() % maxArenas, [a](ArenaPtrRWMutex& arena, std::size_t) -> bool {
if (arena.trySet(a)) {
return true;
}
return false;
}))
{
gStats.notify(Statistics::skippedArenaCreate);
a->~task_arena();
aligned_free(a);
}
}
}
void destroy(Random& rnd) {
auto guard = mLifetimeTracker.makeGuard();
if (guard.continue_execution()) {
auto& ts = mThreadState;
if (!find_arena(rnd.get() % maxArenas, [&ts](ArenaPtrRWMutex& arena, std::size_t idx) {
if (!ts.lockedArenas[idx]) {
ScopedLock lock;
if (lock.tryAcquire(arena, true)) {
auto a = arena.get();
lock.clear();
a->~task_arena();
aligned_free(a);
return true;
}
}
return false;
}))
{
gStats.notify(Statistics::skippedArenaDestroy);
}
}
}
void shutdown() {
mLifetimeTracker.signalShutdown();
mLifetimeTracker.waitCompletion();
find_arena(0, [](ArenaPtrRWMutex& arena, std::size_t) {
if (arena.get()) {
ScopedLock lock{ arena, true };
auto a = arena.get();
lock.clear();
a->~task_arena();
aligned_free(a);
}
return false;
});
}
std::pair<tbb::task_arena*, std::size_t> acquire(Random& rnd, ScopedLock& lock) {
auto guard = mLifetimeTracker.makeGuard();
tbb::task_arena* a{nullptr};
std::size_t resIdx{};
if (guard.continue_execution()) {
auto& ts = mThreadState;
a = find_arena(rnd.get() % maxArenas,
[&ts, &lock, &resIdx](ArenaPtrRWMutex& arena, std::size_t idx) -> tbb::task_arena* {
if (!ts.lockedArenas[idx]) {
if (lock.tryAcquire(arena, false)) {
ts.lockedArenas[idx] = true;
ts.arenaIdxStack[ts.level++] = int(idx);
resIdx = idx;
return arena.get();
}
}
return nullptr;
});
if (!a) {
gStats.notify(Statistics::skippedArenaAcquire);
}
}
return { a, resIdx };
}
void release(ScopedLock& lock) {
auto& ts = mThreadState;
CHECK_FAST(ts.level > 0);
auto idx = ts.arenaIdxStack[--ts.level];
CHECK_FAST(ts.lockedArenas[idx]);
ts.lockedArenas[idx] = false;
lock.release();
}
};
thread_local ArenaTable::ThreadState ArenaTable::mThreadState;
static ArenaTable arenaTable;
static Random threadRandom;
enum ACTIONS {
arena_create,
arena_destroy,
arena_action,
parallel_algorithm,
// TODO:
// observer_attach,
// observer_detach,
// flow_graph,
// task_group,
// resumable_tasks,
num_actions
};
void global_actor(size_t arenaAfterStealing);
template <ACTIONS action>
struct actor;
template <>
struct actor<arena_create> {
static void do_it(Random& r) {
arenaTable.create(r);
}
};
template <>
struct actor<arena_destroy> {
static void do_it(Random& r) {
arenaTable.destroy(r);
}
};
template <>
struct actor<arena_action> {
static void do_it(Random& r, size_t arenaAfterStealing) {
static thread_local std::size_t arenaLevel = 0;
// treat arenas index as priority: we own some resource already,
// so may pretend only to low-priority resource
arenaLevel = std::max(arenaLevel, arenaAfterStealing);
ArenaTable::ScopedLock lock;
auto entry = arenaTable.acquire(r, lock);
if (entry.first) {
enum arena_actions {
arena_execute,
arena_enqueue,
num_arena_actions
};
auto process = r.get() % 2;
auto body = [process] {
if (process) {
tbb::detail::d1::wait_context wctx{ 1 };
tbb::task_group_context ctx;
tbb::this_task_arena::enqueue([&wctx] { wctx.release(); });
tbb::detail::d1::wait(wctx, ctx);
} else {
global_actor(0);
}
};
switch (r.get() % (16*num_arena_actions)) {
case arena_execute:
// to prevent deadlock, potentially blocking operation
// may be called only for arenas with larger index
if (entry.second > arenaLevel) {
gStats.notify(Statistics::ArenaExecute);
auto oldArenaLevel = arenaLevel;
arenaLevel = entry.second;
entry.first->execute(body);
arenaLevel = oldArenaLevel;
break;
}
utils_fallthrough;
case arena_enqueue:
utils_fallthrough;
default:
gStats.notify(Statistics::ArenaEnqueue);
// after stealing by a worker, the task will run in arena
// with index entry.second
entry.first->enqueue([ entry ] { global_actor(entry.second); });
break;
}
arenaTable.release(lock);
}
}
};
template <>
struct actor<parallel_algorithm> {
static void do_it(Random& rnd) {
enum PARTITIONERS {
simpl_part,
auto_part,
aff_part,
static_part,
num_parts
};
int sz = rnd.get() % 10000;
auto doGlbAction = rnd.get() % 1000 == 42;
auto body = [doGlbAction, sz](int i) {
if (i == sz / 2 && doGlbAction) {
global_actor(0);
}
};
switch (rnd.get() % num_parts) {
case simpl_part:
tbb::parallel_for(0, sz, body, tbb::simple_partitioner{}); break;
case auto_part:
tbb::parallel_for(0, sz, body, tbb::auto_partitioner{}); break;
case aff_part:
{
tbb::affinity_partitioner aff;
tbb::parallel_for(0, sz, body, aff); break;
}
case static_part:
tbb::parallel_for(0, sz, body, tbb::static_partitioner{}); break;
}
}
};
void global_actor(size_t arenaAfterStealing) {
static thread_local std::uint64_t localNumActions{};
while (globalNumActions < maxNumActions) {
auto& rnd = threadRandom;
switch (rnd.get() % num_actions) {
case arena_create: gStats.notify(Statistics::ArenaCreate); actor<arena_create>::do_it(rnd); break;
case arena_destroy: gStats.notify(Statistics::ArenaDestroy); actor<arena_destroy>::do_it(rnd); break;
case arena_action: gStats.notify(Statistics::ArenaAcquire); actor<arena_action>::do_it(rnd, arenaAfterStealing); break;
case parallel_algorithm: gStats.notify(Statistics::ParallelAlgorithm); actor<parallel_algorithm>::do_it(rnd); break;
}
if (++localNumActions == 100) {
localNumActions = 0;
globalNumActions += 100;
// TODO: Enable statistics
// static std::mutex mutex;
// std::lock_guard<std::mutex> lock{ mutex };
// std::cout << globalNumActions << "\r" << std::flush;
}
}
}
#if TBB_USE_EXCEPTIONS
//! \brief \ref stress
TEST_CASE("Stress test with mixing functionality") {
// TODO add thread recreation
// TODO: Enable statistics
tbb::task_scheduler_handle handle{ tbb::attach{} };
const std::size_t numExtraThreads = 16;
utils::SpinBarrier startBarrier{numExtraThreads};
utils::NativeParallelFor(numExtraThreads, [&startBarrier](std::size_t) {
startBarrier.wait();
global_actor(0);
});
arenaTable.shutdown();
tbb::finalize(handle);
// gStats.report();
}
#endif
|