feat(linear-static-3d-euler-beam): step 17 - parallel-for-tbb

This commit is contained in:
KOKO\Mimi
2026-08-09 18:52:35 +09:00
parent cfdac70756
commit 2f5e737fa1
6 changed files with 211 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
#include "fesa/assembly/parallel_for.hpp"
#include <oneapi/tbb/parallel_for.h>
namespace fesa {
void SerialParallelFor::execute(
std::size_t count,
const std::function<void(std::size_t)>& body) const {
for (std::size_t index = 0; index < count; ++index) {
body(index);
}
}
void TbbParallelFor::execute(
std::size_t count,
const std::function<void(std::size_t)>& body) const {
if (count == 0U) {
return;
}
// Use oneTBB's caller-scoped scheduler policy. This adapter does not set
// process-wide concurrency or override the later MKL/TBB oversubscription
// policy. A body exception cancels sibling tasks and is rethrown; work
// already running during cancellation may still finish its indexed slot.
oneapi::tbb::parallel_for(
std::size_t{0}, count, [&body](std::size_t index) { body(index); });
}
} // namespace fesa