Kartik Jujare
2017-07-16 17:28:27 UTC
Hello,
Would be grateful if anyone could correct or direct me to the right
solution.
As a test I have a following for loop is a step file
#pragma omp parallel
{
#pragma omp for //private(k) reduction(+:integral)
for (k = 0; k < 4; k++)
{
sleep(1);
}
}
Now the time outputs of the this for loop and another normal one (without
openmp) are the same. I think the problem lies in the flag that I am
passing in the Cmakefile but cant figure out what?
I have tried setting the following flags:
SET (MPI_CXX_COMPILE_FLAGS "-fopenmp")
//OR
SET (DEAL_II_CXX_FLAGS "-fopenmp")
I suppose I dont understand cmake very well. What would be an appropriate
place to place the above line in the CMakeLists.txt
Thank you and regards,
Kartik Jujare
Would be grateful if anyone could correct or direct me to the right
solution.
As a test I have a following for loop is a step file
#pragma omp parallel
{
#pragma omp for //private(k) reduction(+:integral)
for (k = 0; k < 4; k++)
{
sleep(1);
}
}
Now the time outputs of the this for loop and another normal one (without
openmp) are the same. I think the problem lies in the flag that I am
passing in the Cmakefile but cant figure out what?
I have tried setting the following flags:
SET (MPI_CXX_COMPILE_FLAGS "-fopenmp")
//OR
SET (DEAL_II_CXX_FLAGS "-fopenmp")
I suppose I dont understand cmake very well. What would be an appropriate
place to place the above line in the CMakeLists.txt
Thank you and regards,
Kartik Jujare
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dealii+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dealii+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.