- Mar 31, 2003
- 11,679
- 0
- 81
I have code that I am working on that I am able to extract a great deal of parallelism out of.
For instance, I have for loops running that have nothing to do with each other that read values in from an external binary file and store in a vector<vector<double>>.
These could be done simultaneously, I simply don't know how.
Can someone point me in the right direction to grabbing info on learning multithreading in C++? I searched Google, but the information is kind of scattered.
Thanks
-Kevin
For instance, I have for loops running that have nothing to do with each other that read values in from an external binary file and store in a vector<vector<double>>.
These could be done simultaneously, I simply don't know how.
Can someone point me in the right direction to grabbing info on learning multithreading in C++? I searched Google, but the information is kind of scattered.
Thanks
-Kevin