public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: Christoph Bartoschek <bartoschek@gmx.de>
To: gcc-help@gcc.gnu.org
Subject: Openmp sections
Date: Sat, 29 Mar 2008 17:27:00 -0000	[thread overview]
Message-ID: <200803291829.20534.bartoschek@gmx.de> (raw)

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

             reply	other threads:[~2008-03-29 17:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-29 17:27 Christoph Bartoschek [this message]
2008-03-29 17:42 ` Christoph Bartoschek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200803291829.20534.bartoschek@gmx.de \
    --to=bartoschek@gmx.de \
    --cc=gcc-help@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).