From 8033e34291cd5f4ed6ce650a15a8bdf136053953 Mon Sep 17 00:00:00 2001 From: Fabio Roberto Vitello Date: Fri, 15 May 2020 15:55:32 +0200 Subject: [PATCH] Fixed nthread init and removed ompss fpga pragma --- aprod.c | 1 - util.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/aprod.c b/aprod.c index e13de38..b4ee203 100644 --- a/aprod.c +++ b/aprod.c @@ -249,7 +249,6 @@ void aprod(int mode, long int m, long int n, double *vVect, double *knownTerms, for(int nt=0; nt < ntasks; nt++ ) { - #pragma omp target device (fpga) copy_deps #pragma omp task label(vVect_nAstroPSolved) //out(vVect[jstartAstro : jstartAstro + nAstroPSolved-1]) { lset = mapForThread[nt][0] * nparam; diff --git a/util.h b/util.h index dbb0fe6..6f12e14 100644 --- a/util.h +++ b/util.h @@ -103,7 +103,7 @@ struct comData { int timeCPR, timeLimit, itnCPR,itnCPRstop,itnCPRend, itnLimit,itn,noCPR; long offsetCMag,offsetCnu,offsetCdelta_eta,offsetCDelta_eta_1,offsetCDelta_eta_2; long offsetCDelta_eta_3,offsetCdelta_zeta,offsetCDelta_zeta_1,offsetCDelta_zeta_2; - int nthreads=1; + int nthreads; int ntasks; long **mapForThread; int nSubsetAtt, nSubsetInstr; -- GitLab