<?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 Hi, in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185277#M6821</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you checked the permissions as we have suggested?&lt;/P&gt;&lt;P&gt;let us know if you are facing any issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;</description>
    <pubDate>Mon, 01 Jun 2020 10:27:17 GMT</pubDate>
    <dc:creator>PrasanthD_intel</dc:creator>
    <dc:date>2020-06-01T10:27:17Z</dc:date>
    <item>
      <title>[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, 拒绝访问。</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185275#M6819</link>
      <description>&lt;P&gt;在调试mpi时出现如下问题&lt;/P&gt;&lt;P&gt;代码&lt;/P&gt;
&lt;PRE class="brush:fortran; class-name:dark;"&gt;      program main
       include 'mpif.h'
       character* (MPI_MAX_PROCESSOR_NAME) processor_name
       integer myid,numprocs,namelen,rc,ierr
       call MPI_INIT( ierr )
      call MPI_COMM_RANK( MPI_COMM_WORLD, myid, ierr )
       call MPI_COMM_SIZE( MPI_COMM_WORLD, numprocs, ierr )
       call MPI_GET_PROCESSOR_NAME(processor_name, namelen, ierr)
       write(*,10) myid,numprocs,processor_name
 10  FORMAT('Hello World! Process ',I2,' of ',I1,' on ', 20A)
       call MPI_FINALIZE(rc)
       end&lt;/PRE&gt;

&lt;P&gt;结果&lt;/P&gt;
&lt;P&gt;[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, 拒绝访问。&lt;BR /&gt;[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, 拒绝访问。&lt;BR /&gt;[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, 拒绝访问。&lt;BR /&gt;[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, 拒绝访问。&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2020 02:47:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185275#M6819</guid>
      <dc:creator>曲__印强</dc:creator>
      <dc:date>2020-05-26T02:47:12Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185276#M6820</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This forum is English only forum.&lt;/P&gt;&lt;P&gt;We have translated your query into English and this is what we have understood&lt;/P&gt;&lt;P&gt;====================================================================================================&lt;/P&gt;&lt;P&gt;The following problems occur when debugging mpi&lt;/P&gt;
&lt;PRE class="brush:fortran; class-name:dark;"&gt;     program main
      include 'mpif.h'
      character* (MPI_MAX_PROCESSOR_NAME) processor_name
      integer myid,numprocs,namelen,rc,ierr
      call MPI_INIT( ierr )
     call MPI_COMM_RANK( MPI_COMM_WORLD, myid, ierr )
      call MPI_COMM_SIZE( MPI_COMM_WORLD, numprocs, ierr )
      call MPI_GET_PROCESSOR_NAME(processor_name, namelen, ierr)
      write(*,10) myid,numprocs,processor_name
       10  FORMAT('Hello World! Process ',I2,' of ',I1,' on ', 20A)
      call MPI_FINALIZE(rc)
      end


[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, Access is denied
[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, Access is denied
[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, Access is denied
[-1:12528]ERROR:execvp error on file: C:\Users\ASUS-pc\source\repos\Console2\Console2\x64\Debug\Console2.exe, Access is denied&lt;/PRE&gt;

&lt;P&gt;====================================================================================================&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We suspect that this error occurs when you don't have enough privileges to run the executable.&lt;/P&gt;
&lt;P&gt;Are you the root user in your system? if not check&amp;nbsp;if your account has enough privileges to launch the program on hosts.&lt;/P&gt;
&lt;P&gt;Could you try running the executable manually without mpiexec and see if you are able to run it.&lt;BR /&gt;Also, try to run mpiexec with -localonly option and see if you can run the program locally.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;mpiexec -localonly &amp;lt;Foo.exe&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Once again register your credentials with mpiexec. For more info go through the &lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/get-started-with-mpi-for-windows/top.html"&gt;getting started&lt;/A&gt; guide of mpi.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;mpiexec -register&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Could you please provide the permissions of the file you are trying to execute and the MPI launch command you are using ?&lt;/P&gt;
&lt;P&gt;Thanks and regards&lt;/P&gt;
&lt;P&gt;Prasanth&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2020 11:14:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185276#M6820</guid>
      <dc:creator>PrasanthD_intel</dc:creator>
      <dc:date>2020-05-26T11:14:56Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185277#M6821</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you checked the permissions as we have suggested?&lt;/P&gt;&lt;P&gt;let us know if you are facing any issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 10:27:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185277#M6821</guid>
      <dc:creator>PrasanthD_intel</dc:creator>
      <dc:date>2020-06-01T10:27:17Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185278#M6822</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We are closing thread considering your issue is resolved.&lt;/P&gt;&lt;P&gt;Please raise a new thread for further queries.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jun 2020 06:01:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/1-12528-ERROR-execvp-error-on-file-C-Users-ASUS-pc-source-repos/m-p/1185278#M6822</guid>
      <dc:creator>PrasanthD_intel</dc:creator>
      <dc:date>2020-06-15T06:01:32Z</dc:date>
    </item>
  </channel>
</rss>

