public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Openmp sections
@ 2008-03-29 17:27 Christoph Bartoschek
  2008-03-29 17:42 ` Christoph Bartoschek
  0 siblings, 1 reply; 2+ messages in thread
From: Christoph Bartoschek @ 2008-03-29 17:27 UTC (permalink / raw)
  To: gcc-help

Hi,

why is the following code not executed in parallel:

#include <iostream>
#include <omp.h>
 
int main()
{
 
#pragma omp sections nowait
{
  #pragma omp section
  {
    int i = 0;
    while (true) {
      ++i;
      if (i % 1000000 == 0) {
         std::cerr << "1. Thread: " << omp_get_thread_num() 
                   << "  i = " << i << std::endl;
      } 
    }
  }

  #pragma omp section
  {
    int i;
    while (true) {
      ++i;
      if (i % 1000000 == 0) {
        std::cerr << "2. Thread: " << omp_get_thread_num()
                  << "  i = " << i << std::endl;
      }
    }
  }
}

}

I know that the usage of std::cerr is not threadsafe. But this is only to see 
that only one thread is running. If I remove it, there still only one thread 
running.

I use g++ 4.3.0 and compile with:

g++ -fopenmp test.C -lgomp

./a.out prints only messages from 1. Thread.

Greetings
Christoph

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-03-29 17:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-29 17:27 Openmp sections Christoph Bartoschek
2008-03-29 17:42 ` Christoph Bartoschek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).