Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
C++11: std::async, std::thread,
VS (Parallel Patterns Library): concurency::parallel_for and more https://msdn.microsoft.com/en-us/library/dd492819.aspx
posix : pthread library
as well as boost::thread, tbb ( https://www.threadingbuildingblocks.org/ )
And in general, a bunch of all sorts of solutions.
If Windows - CreateThread to help.
You can also use openCL/CUDA.
I advise you to read and learn in all subtleties.
habrahabr.ru/post/201826
habrahabr.ru/company/yandex/blog/240525
One stream sorts another transforms? Or parallel sorting, and parallel transformation?
If the latter, then I would start by describing how I present a parallel solution in this case, because there are many options. If the former, then I would start with an example
int main(){
std::vector<char> a = {'B', 'a'};
std::thread t1(&mySort, &a);
std::thread t2(&myToLower, &a);
t1.join();
t2.join();
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question