<?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 Using OpenMP with Intel Fortran in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Using-OpenMP-with-Intel-Fortran/m-p/763745#M18838</link>
    <description>With program not running and Debug configuration selected and built click on&lt;BR /&gt;&lt;BR /&gt; Debug | Windows | Breakpoints&lt;BR /&gt;&lt;BR /&gt;The in the break point window, click on the button to delete all break points.&lt;BR /&gt;(do not leave any break points in the window)&lt;BR /&gt;&lt;BR /&gt;Then reset any break point you may wish to have. Then try running again.&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 12 Aug 2010 19:43:16 GMT</pubDate>
    <dc:creator>jimdempseyatthecove</dc:creator>
    <dc:date>2010-08-12T19:43:16Z</dc:date>
    <item>
      <title>Using OpenMP with Intel Fortran</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Using-OpenMP-with-Intel-Fortran/m-p/763744#M18837</link>
      <description>&lt;P&gt;Hi, &lt;BR /&gt;
I'm trying to use a Intel FORTRAN (Windows) code section parallelisation though the use of
OpenMP but I have an error message that I cannot fix. I think, I might have a
problem of the project properties configuration.&lt;/P&gt;

&lt;P&gt;The main
problem comes from the &lt;I&gt;Fortran Language
Process OpenMP Directives&lt;/I&gt; configuration. I selected : Generate Parallel Code (/Qopenmp)&lt;/P&gt;&lt;P&gt;The message error is expressed as : &lt;/P&gt;&lt;P&gt;&lt;I&gt;Debug Assertion Failled&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;...&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;File:f:\\dd\\vctools\\crt_bld\\self_x86\\crt\\scr\\winsig.c&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Line 419&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Expression:("Invalid signal or erroe", 0)&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Here is a little code I am using to check the
gain in time:&lt;/P&gt;&lt;P&gt;====================================================&lt;BR /&gt;&lt;PRE&gt;[bash]program   doparallelsection
 
 use omp_lib  
implicit none

INTEGER N, I, J, K,NK, parallel
PARAMETER (N=1000)

REAL*8 A(N,N),B(N,N),C(N,N), ti, tf

parallel = 1
NK = 100
call cpu_time(ti)


if (parallel==1) then
!$OMP PARALLEL SECTIONS
    !$OMP SECTION
        do k=1,NK
            do i= 1, N
                do j=1,N    
                    A(i,j) = i+j
                enddo 
            enddo
        enddo
          
    !$OMP SECTION
        do k=1,NK
            do i= 1, N
                do j=1,N    
                    B(i,j) = i-j
                enddo 
            enddo
        enddo  

    !$OMP END PARALLEL SECTIONS
else

     do k=1,NK
        do i= 1, N
            do j=1,N    
                A(i,j) = i+j
            enddo 
        enddo
    enddo
      
    do k=1,NK
        do i= 1, N
            do j=1,N    
                B(i,j) = i-j
            enddo 
        enddo
    enddo 
    
 endif 
  
call cpu_time(tf)

if (parallel ==1) then
    open(unit=10,file='cpu_paralleldo.dat',status="unknown")
else
    open(unit=10,file='cpu_do.dat',status="unknown")
endif

write(10,*) "cpu time ="
write(10,*) tf-ti
close(10)

end&lt;BR /&gt;================================================&lt;BR /&gt;&lt;BR /&gt;Thanks for the help.&lt;BR /&gt;&lt;BR /&gt;Jean-Marie[/bash]&lt;/PRE&gt; &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Aug 2010 19:15:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Using-OpenMP-with-Intel-Fortran/m-p/763744#M18837</guid>
      <dc:creator>zokagoa</dc:creator>
      <dc:date>2010-08-12T19:15:10Z</dc:date>
    </item>
    <item>
      <title>Using OpenMP with Intel Fortran</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Using-OpenMP-with-Intel-Fortran/m-p/763745#M18838</link>
      <description>With program not running and Debug configuration selected and built click on&lt;BR /&gt;&lt;BR /&gt; Debug | Windows | Breakpoints&lt;BR /&gt;&lt;BR /&gt;The in the break point window, click on the button to delete all break points.&lt;BR /&gt;(do not leave any break points in the window)&lt;BR /&gt;&lt;BR /&gt;Then reset any break point you may wish to have. Then try running again.&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Aug 2010 19:43:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Using-OpenMP-with-Intel-Fortran/m-p/763745#M18838</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2010-08-12T19:43:16Z</dc:date>
    </item>
  </channel>
</rss>

