Skip to content
Snippets Groups Projects
Commit 905ab414 authored by Tammo Jan Dijkema's avatar Tammo Jan Dijkema
Browse files

Task #8374: disabling multithreading in GainCal for now (does not seem to help)

parent 87377601
No related branches found
No related tags found
No related merge requests found
...@@ -451,7 +451,7 @@ namespace LOFAR { ...@@ -451,7 +451,7 @@ namespace LOFAR {
iS.h(st,3)=conj(iS.g(st,3)); iS.h(st,3)=conj(iS.g(st,3));
} }
#pragma omp parallel for //#pragma omp parallel for
for (uint st1=0;st1<nSt;++st1) { for (uint st1=0;st1<nSt;++st1) {
uint thread=OpenMP::threadNum(); uint thread=OpenMP::threadNum();
DComplex* vis_p; DComplex* vis_p;
...@@ -518,7 +518,7 @@ namespace LOFAR { ...@@ -518,7 +518,7 @@ namespace LOFAR {
for (uint st=0;st<nUn;++st) { for (uint st=0;st<nUn;++st) {
iS.h(st,0)=conj(iS.g(st,0)); iS.h(st,0)=conj(iS.g(st,0));
} }
#pragma omp parallel for //#pragma omp parallel for
for (uint st1=0;st1<nUn;++st1) { for (uint st1=0;st1<nUn;++st1) {
uint thread=OpenMP::threadNum(); uint thread=OpenMP::threadNum();
DComplex* vis_p; DComplex* vis_p;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment