| bio | website | |
|---|---|---|
| location | Texas, US | |
| age | 25 | |
| visits | member for | 3 years, 1 month |
| seen | 7 hours ago | |
| stats | profile views | 146 |
Currently, I am a software Engineer at Schlumberger WesternGeco
|
2d |
awarded | Popular Question |
|
2d |
asked | Is it possible to override std::endl? |
|
May 3 |
asked | What's wrong with the ifstream seekg |
|
May 1 |
accepted | ifstream:: What is the maximum file size that a ifstream can read |
|
May 1 |
comment |
ifstream:: What is the maximum file size that a ifstream can read Yes, it did solve the problem. Now I am getting the correct result. |
|
May 1 |
comment |
ifstream:: What is the maximum file size that a ifstream can read @WhozCraig: The platform i am compiling for is Win32. I didn't try 64bit binary. |
|
May 1 |
revised |
ifstream:: What is the maximum file size that a ifstream can read added 329 characters in body |
|
May 1 |
asked | ifstream:: What is the maximum file size that a ifstream can read |
|
Apr 24 |
awarded | Popular Question |
|
Apr 19 |
awarded | Popular Question |
|
Apr 18 |
awarded | Popular Question |
|
Apr 15 |
comment |
BMI calculation C++ yes, that is the best way to do that.. or else you could store the height and weight as vector<pair<double, double>>. By this way, you will loop only through one array. |
|
Apr 7 |
awarded | Yearling |
|
Mar 29 |
comment |
Several producers, one consumer: Avoid starvation What happens if the P1 keeps on adding elements before P1: 1. That's when the P2 will never be processed |
|
Mar 29 |
comment |
Several producers, one consumer: Avoid starvation This might result in starvation. In your example, if producer 1 keeps on adding elements, then producer 2 might go into indefinite starvation. producer 2 will never get processed. |
|
Mar 29 |
comment |
Several producers, one consumer: Avoid starvation Also, thinking of your second approach, I guess it will be difficult to find ideal value for "n" |
|
Mar 29 |
revised |
Several producers, one consumer: Avoid starvation added 340 characters in body |
|
Mar 29 |
answered | Several producers, one consumer: Avoid starvation |
|
Mar 21 |
comment |
Using OMP_SCHEDULE with #pragma omp for parallel schedule(runtime) You can specify the scheduling by having "#pragma omp parallel for schedule(static)" above the for loop |
|
Mar 21 |
comment |
Using OMP_SCHEDULE with #pragma omp for parallel schedule(runtime) What do you actually mean by change them dynamically? You mean you want your code to automatically select the scheduling on run time? |