Hello,
Please help me with calculation parallelization . I have 2
processors DELL PRECISION 530 computer and I'd like
parallelize cycles like
for(int i = 0; i < last; ++i)
{
a[i] = b[i] + c[i];
}
I've read about '#pragma omp parallel for' instruction for
the future version of VC++(Visual C++ "Whidbey": Advanced
Code Generation ). What can I do with VC++6 and VC++ .NET
2003?
Regards
Leonid
Please help me with calculation parallelization . I have 2
processors DELL PRECISION 530 computer and I'd like
parallelize cycles like
for(int i = 0; i < last; ++i)
{
a[i] = b[i] + c[i];
}
I've read about '#pragma omp parallel for' instruction for
the future version of VC++(Visual C++ "Whidbey": Advanced
Code Generation ). What can I do with VC++6 and VC++ .NET
2003?
Regards
Leonid
Comment