Changes

Jump to: navigation, search

GPU621/CamelCaseTeam

932 bytes added, 03:41, 22 July 2021
no edit summary
C++ threading consists of the creation of a thread that works on a function. By having multiple threads, multiple functions are able to be performed at the same time which enables parallel processing.
<blockquotesyntaxhighlight lang="cpp"><p>template<class Function, class... args></p> <p>explicit thread( Function&& f, Args&&... args);</p></blockquotesyntaxhighlight>
As seen above, a single thread takes a function through overloading and performs the task by passing the arguments to the function parameter which would execute separate to other threads. Once these threads are finished
performing their function, the child thread must be joined using the .join() function in the thread library to the parent thread.
 
<syntaxhighlight lang="cpp">
#include <thread>
#include <iostream>
#include <chrono>
 
void thread1() {
std::this_thread::sleep_for(std::chrono::seconds(2));
std::cout << "Hello from thread 1" << std::endl;
}
 
void thread2() {
std::this_thread::sleep_for(std::chrono::seconds(3));
std::cout << "Hello from thread 2" << std::endl;
}
 
void thread3() {
std::this_thread::sleep_for(std::chrono::seconds(1));
std::cout << "Hello from thread 3" << std::endl;
}
 
int main() {
std::cout << "Creating thread 1: " << std::endl;
std::thread t1(thread1); //appears 2nd
 
std::cout << "Creating thread 2: " << std::endl;
std::thread t2(thread2); //appears 3rd
 
std::cout << "Creating thread 3: " << std::endl;
std::thread t3(thread3); //appears 1st
 
t1.join();
t2.join();
t3.join();
}</syntaxhighlight>
 
The code above gives a simple example on how threads are created and joined back to the parent thread in the end.
== OpenMP Threading ==
OpenMP threads consists of a parallel region that forks a master thread into multiple child threads that each performs a function in parallel amongst each other and joins back to its parent thread after reaching the end of the parallel region.
<blockquotesyntaxhighlight lang="cpp"><p>#pragma omp construct [clause, ...]</p> <p>structured block</p></blockquotesyntaxhighlight>
The construct identifies what block of code is being executed in parallel and the clause qualifies the parallel construct. In comparison to the C++ 11 thread library, the threads are performed in a region while the C++ 11 thread library have to be specifically created and joined back to the parent thread.
16
edits

Navigation menu