<?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 Question on Intel MPI are in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072779#M4714</link>
    <description>&lt;P&gt;Question on Intel MPI are more likely to get answers on the companion Cluster and HPC forum.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Nov 2015 15:28:27 GMT</pubDate>
    <dc:creator>TimP</dc:creator>
    <dc:date>2015-11-18T15:28:27Z</dc:date>
    <item>
      <title>MPI error when submitting a Job on Sun Grid Engine</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072778#M4713</link>
      <description>&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;I currently have a problem when trying to run mpiexec or mpiexec-hydra on a cluster using Sun Grid Engine to schedule jobs.&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;The errors that come up after running the mpiexec-hydra are the following:&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;
	&lt;DIV&gt;Traceback (most recent call last):&lt;/DIV&gt;

	&lt;DIV&gt;&amp;nbsp; File "&amp;lt;stdin&amp;gt;", line 973, in ?&lt;/DIV&gt;

	&lt;DIV&gt;&amp;nbsp; File "&amp;lt;stdin&amp;gt;", line 465, in mpdboot&lt;/DIV&gt;

	&lt;DIV&gt;ValueError: need more than 1 value to unpack&lt;/DIV&gt;

	&lt;DIV&gt;error: commlib error: access denied (client IP resolved to host name "localhost.localdomain". This is not identical to clients host name "node038.cm.cluster")&lt;/DIV&gt;

	&lt;DIV&gt;error: executing task of job 1046000 failed: failed sending task to execd@localhost: can't find connection&lt;/DIV&gt;

	&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;

	&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;

	&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;

	&lt;DIV&gt;
		&lt;DIV&gt;And this is a job-script that I am using to run the mpi Job:&lt;/DIV&gt;

		&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;

		&lt;DIV&gt;
			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#!/bin/sh&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# Your job name&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#$ -N My_Job&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# Use current working directory&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#$ -cwd&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# pe (Parallel environment) request. Set your number of processors here.&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#$ -pe impi 24&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# Run job through bash shell&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;#$ -S /bin/bash&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# If modules are needed, source modules environment:&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;. /etc/profile.d/modules.sh&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# Add any modules you might require:&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;module add shared&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;module load intel/compiler/64/11.1/046&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;module load intel/mpi/&lt;A style="color: rgb(17, 85, 204);" href="http://4.0.0.028/" target="_blank"&gt;4.0.0.028&lt;/A&gt;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# The following output will show in the output file&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;echo "Got $NSLOTS processors."&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;cat $PE_HOSTFILE | awk '{print $1}' | sort -u | head -n 2 &amp;gt; hostfile.txt&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;# Run your application&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;env&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;export I_MPI_MPD_RSH=ssh&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;export I_MPI_HYDRA_DEBUG=on&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;export I_MPI_HYDRA_BOOTSTRAP=ssh&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;mpdboot &amp;nbsp;-n 2 --verbose -r /usr/bin/ssh -f $PE_HOSTFILE&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;mpiexec.hydra -np 2 pingpong2 &amp;nbsp;&amp;gt; output_file.txt&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Also I did not setup an .mpd.conf and mpd.hosts in my home account. Not sure if these files are generated when calling intel mpi.&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;When i run ps aux | mpd, no mpd is listed as running.&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Thanks,&lt;/DIV&gt;

			&lt;DIV style="color: rgb(34, 34, 34); line-height: normal; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Kris&lt;/DIV&gt;
		&lt;/DIV&gt;
	&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 18 Nov 2015 09:29:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072778#M4713</guid>
      <dc:creator>Kristian_G_</dc:creator>
      <dc:date>2015-11-18T09:29:48Z</dc:date>
    </item>
    <item>
      <title>Question on Intel MPI are</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072779#M4714</link>
      <description>&lt;P&gt;Question on Intel MPI are more likely to get answers on the companion Cluster and HPC forum.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 15:28:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072779#M4714</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2015-11-18T15:28:27Z</dc:date>
    </item>
    <item>
      <title>I agree Tim.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072780#M4715</link>
      <description>&lt;P&gt;I agree Tim.&lt;BR /&gt;
	@krigri:&amp;nbsp; I'll transfer this thread to the clusters/HPC forum at: &lt;A href="https://software.intel.com/en-us/forums/intel-clusters-and-hpc-technology"&gt;https://software.intel.com/en-us/forums/intel-clusters-and-hpc-technology&lt;/A&gt; for faster resolution.&lt;/P&gt;

&lt;P&gt;_Kittur&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2015 18:31:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072780#M4715</guid>
      <dc:creator>KitturGanesh</dc:creator>
      <dc:date>2015-11-18T18:31:37Z</dc:date>
    </item>
    <item>
      <title>Hi Kris,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072781#M4716</link>
      <description>&lt;P&gt;Hi Kris,&lt;/P&gt;

&lt;P&gt;As far as I see you use quite old Intel MPI Library 4.0. Is it possible for you to try latest (5.x) version?&lt;/P&gt;

&lt;P&gt;BTW MPD related commands aren't necessary if you use mpiexec.hydra (Hydra process launcher). MPD and Hydra are two different MPI process launchers.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2015 08:21:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-error-when-submitting-a-Job-on-Sun-Grid-Engine/m-p/1072781#M4716</guid>
      <dc:creator>Artem_R_Intel1</dc:creator>
      <dc:date>2015-11-19T08:21:50Z</dc:date>
    </item>
  </channel>
</rss>

