2021-01-23から1日間の記事一覧

C++の並列化 OpenMPとstd::thread

C++

久々にC++触るので肩慣らし。 とりあえず肩慣らしにOpenMPとstd::threadで、ループの数だけスレッド立てる簡単な並列処理を書いてみた。 OpenMPは数値計算用途という感じなのかな。。 OpenMP版 #include <iostream> #include <thread> int main() { const int n = 10; int arra</thread></iostream>…