<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic OMP error in Intel® Moderncode for Parallel Architectures</title>
    <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883455#M3433</link>
    <description>Alfredo,&lt;BR /&gt;&lt;BR /&gt;Did you find out anything more about this problem after talking to the sysadmin? It sounds to me like it may be some buggy interaction between the PBS system and POSIX threads, but I could be mistaken. Please let me know if you have any more info.&lt;BR /&gt;&lt;BR /&gt;Thanks,</description>
    <pubDate>Fri, 19 Mar 2010 15:12:44 GMT</pubDate>
    <dc:creator>Grant_H_Intel</dc:creator>
    <dc:date>2010-03-19T15:12:44Z</dc:date>
    <item>
      <title>OMP error</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883451#M3429</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm developing a threaded application in Fortran and OpenMP and using the intel ifort compiler. Some runs of my code end up in an error message of the type below. This also happens when only one thread is used.&lt;/P&gt;
&lt;P&gt;Could anyone please explain me what this error means?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;DIV id="_mcePaste"&gt;forrtl: error (78): process killed (SIGTERM)&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;Image       PC        Routine      Line    Source&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;libpthread.so.0  00002ACFACA95CB0 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;libpthread.so.0  00002ACFACA95B5D Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;libiomp5.so    00002ACFAC95C4A2 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;OMP: Error #141: Monitor did not reap properly.&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;OMP: System error #35: Resource deadlock avoided&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;forrtl: error (76): Abort trap signal&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;Image       PC        Routine      Line    Source&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;dtest       00000000004BBBED Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;dtest       00000000004BA6F5 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;dtest       000000000046D689 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;dtest       0000000000430B0A Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;dtest       0000000000435323 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;libpthread.so.0  00002ACFACA95CB0 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;libc.so.6     00002ACFACBD1DA5 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;libc.so.6     00002ACFACBD31A0 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;libiomp5.so    00002ACFAC93D220 Unknown        Unknown Unknown&lt;/DIV&gt;
&lt;DIV id="_mcePaste"&gt;Aborted&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
forrtl: error (78): process killed (SIGTERM)Image       PC        Routine      Line    Source      libpthread.so.0  00002ACFACA95CB0 Unknown        Unknown Unknownlibpthread.so.0  00002ACFACA95B5D Unknown        Unknown Unknownlibiomp5.so    00002ACFAC95C4A2 Unknown        Unknown UnknownOMP: Error #141: Monitor did not reap properly.OMP: System error #35: Resource deadlock avoidedforrtl: error (76): Abort trap signalImage       PC        Routine      Line    Source      dtest       00000000004BBBED Unknown        Unknown Unknowndtest       00000000004BA6F5 Unknown        Unknown Unknowndtest       000000000046D689 Unknown        Unknown Unknowndtest       0000000000430B0A Unknown        Unknown Unknowndtest       0000000000435323 Unknown        Unknown Unknownlibpthread.so.0  00002ACFACA95CB0 Unknown        Unknown Unknownlibc.so.6     00002ACFACBD1DA5 Unknown        Unknown Unknownlibc.so.6     00002ACFACBD31A0 Unknown        Unknown Unknownlibiomp5.so    00002ACFAC93D220 Unknown        Unknown UnknownAborted&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2010 17:03:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883451#M3429</guid>
      <dc:creator>Alfredo</dc:creator>
      <dc:date>2010-02-25T17:03:18Z</dc:date>
    </item>
    <item>
      <title>OMP error</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883452#M3430</link>
      <description>&lt;P&gt;This is an internal error reported from the OpenMP run-time library. It means that the "monitor" thread was notavailableto do a POSIX thread "join" operation when the run-time library is being shut down. The most common problem that causes this is fork()/exec() code, which copies the library data structures, but not the actual POSIX threads. Since these functions are rarely used in Fortran code, it may not be the cause of the internal error.&lt;/P&gt;
&lt;P&gt;If you are not using fork()/exec(), then the best think to do would be to submit a bug report which includes a test case that reproduces the problem to the Intel Premier Support web site. Without a test case, it may be nearly impossible for support engineers to reproduce the problem.&lt;/P&gt;
&lt;P&gt;Please let me know if you have any further questions.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2010 21:02:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883452#M3430</guid>
      <dc:creator>Grant_H_Intel</dc:creator>
      <dc:date>2010-02-25T21:02:43Z</dc:date>
    </item>
    <item>
      <title>OMP error</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883453#M3431</link>
      <description>&lt;P&gt;Dear Grant,&lt;/P&gt;
&lt;P&gt;I'm not using fork/exec. I'll try to reproduce the problem on a smaller code since what I have now is quite complicated and submit a bug report.&lt;/P&gt;
&lt;P&gt;Thanks for helping.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Alfredo&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2010 07:48:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883453#M3431</guid>
      <dc:creator>Alfredo</dc:creator>
      <dc:date>2010-02-26T07:48:35Z</dc:date>
    </item>
    <item>
      <title>OMP error</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883454#M3432</link>
      <description>&lt;P&gt;Just a little update on this topic. I found out that the problem only happens when launching the job on a cluster through pbs and when the job does not have exclusive access to the node that has been allocated to it. On the contrary, if the job has exclusive access, no problems at all. I'll check with the sysadmin and eventually add more useful info to this discussion.&lt;/P&gt;
&lt;P&gt;best regards&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;alfredo&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2010 16:37:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883454#M3432</guid>
      <dc:creator>Alfredo</dc:creator>
      <dc:date>2010-02-26T16:37:17Z</dc:date>
    </item>
    <item>
      <title>OMP error</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883455#M3433</link>
      <description>Alfredo,&lt;BR /&gt;&lt;BR /&gt;Did you find out anything more about this problem after talking to the sysadmin? It sounds to me like it may be some buggy interaction between the PBS system and POSIX threads, but I could be mistaken. Please let me know if you have any more info.&lt;BR /&gt;&lt;BR /&gt;Thanks,</description>
      <pubDate>Fri, 19 Mar 2010 15:12:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/OMP-error/m-p/883455#M3433</guid>
      <dc:creator>Grant_H_Intel</dc:creator>
      <dc:date>2010-03-19T15:12:44Z</dc:date>
    </item>
  </channel>
</rss>

