<?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 Time-stamp output for mpiexec in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1195587#M6977</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I am looking for a similar option to "-timestamp-output" for mpiexec of openMPI for Intel MPI, which adds a timestamp at each line of output to stdout, stderr, and stddiag of the program (not only for Intel MPI Debug messages). I found the option "-prepend-pattern" but I was not able to get proper timestamps for the output of each rank.&lt;/P&gt;
&lt;P&gt;Anyone knows how to do that?&lt;/P&gt;
&lt;P&gt;Thanks in advance and best regards!&lt;/P&gt;
&lt;P&gt;Crunchip&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jul 2020 09:08:02 GMT</pubDate>
    <dc:creator>pboehl</dc:creator>
    <dc:date>2020-07-29T09:08:02Z</dc:date>
    <item>
      <title>Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1195587#M6977</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I am looking for a similar option to "-timestamp-output" for mpiexec of openMPI for Intel MPI, which adds a timestamp at each line of output to stdout, stderr, and stddiag of the program (not only for Intel MPI Debug messages). I found the option "-prepend-pattern" but I was not able to get proper timestamps for the output of each rank.&lt;/P&gt;
&lt;P&gt;Anyone knows how to do that?&lt;/P&gt;
&lt;P&gt;Thanks in advance and best regards!&lt;/P&gt;
&lt;P&gt;Crunchip&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 09:08:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1195587#M6977</guid>
      <dc:creator>pboehl</dc:creator>
      <dc:date>2020-07-29T09:08:02Z</dc:date>
    </item>
    <item>
      <title>Re:Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1196026#M6979</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us. Currently, Intel MPI does not have any flags like -timestamp-output which is there in OpenMPI.&lt;/P&gt;
&lt;P&gt;However, you can get output similar to that by using bash command. For example, to print timestamp for stdout and stderr you can use the following command:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG style="font-size: 14px;"&gt;mpirun -n 6 ./&amp;lt;executable_name&amp;gt; 2&amp;gt;&amp;amp;1 | xargs -L 1 echo `date +'[%Y-%m-%d %H:%M:%S]'` $1&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do let us know if this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;/P&gt;
&lt;P&gt;Abhishek&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jul 2020 12:47:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1196026#M6979</guid>
      <dc:creator>AbhishekD_Intel</dc:creator>
      <dc:date>2020-07-30T12:47:18Z</dc:date>
    </item>
    <item>
      <title>Re:Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1198240#M6997</link>
      <description>&lt;P&gt;Hi Abhishek,&lt;/P&gt;
&lt;P&gt;thank you for your reply. Yes, something similar I also found.&amp;nbsp; There are just two possible drawbacks which I see with that solution. I think the output of mpiexec is buffered, so it could be that it does not the really print correct timestamp.&lt;/P&gt;
&lt;P&gt;And the other thing: It might be a quite heavy additional load to call an external "date" for each process and output if one uses really large jobs with debugging output.&lt;/P&gt;
&lt;P&gt;I guess an internal syscall might be a better option.&lt;/P&gt;
&lt;P&gt;Anyway,&amp;nbsp; thanks for your help &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 08:05:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1198240#M6997</guid>
      <dc:creator>pboehl</dc:creator>
      <dc:date>2020-08-07T08:05:40Z</dc:date>
    </item>
    <item>
      <title>Re:Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1198963#M6999</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Yes, the provided solution does have some drawbacks in some cases and also I do agree that it will create some additional load. But if you want then you can embed some library calls into your program at a time of stdout/stderr that will also help you depending on your use-case.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let us know if there is a critical need for this feature in our use-case. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Aug 2020 09:22:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1198963#M6999</guid>
      <dc:creator>AbhishekD_Intel</dc:creator>
      <dc:date>2020-08-10T09:22:09Z</dc:date>
    </item>
    <item>
      <title>Re:Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1200871#M7027</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please give us an update on the issue.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Aug 2020 12:36:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1200871#M7027</guid>
      <dc:creator>AbhishekD_Intel</dc:creator>
      <dc:date>2020-08-17T12:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1201186#M7029</link>
      <description>&lt;P&gt;Hello Abhishek,&lt;/P&gt;
&lt;P&gt;thank you. Yes, I know about things like LD_PRELOAD to "hack" something. But as we (at a supercomputing centre) have use for such a feature more often (also in our user support), we would appreciate a simple command line switch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 07:22:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1201186#M7029</guid>
      <dc:creator>pboehl</dc:creator>
      <dc:date>2020-08-18T07:22:09Z</dc:date>
    </item>
    <item>
      <title>Re:Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1201957#M7048</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have discussed this issue with the experts and escalating it as a feature request for Intel MPI.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Aug 2020 05:37:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1201957#M7048</guid>
      <dc:creator>AbhishekD_Intel</dc:creator>
      <dc:date>2020-08-20T05:37:06Z</dc:date>
    </item>
    <item>
      <title>Betreff: Re:Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1202023#M7049</link>
      <description>&lt;P&gt;Hi Abhishek,&lt;/P&gt;
&lt;P&gt;thank you a lot for your effort, very appreciated.&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 09:00:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1202023#M7049</guid>
      <dc:creator>pboehl</dc:creator>
      <dc:date>2020-08-20T09:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: Time-stamp output for mpiexec</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1413360#M9831</link>
      <description>&lt;P&gt;&lt;SPAN&gt;-prepend-timestamp option is available now.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2022 21:10:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Time-stamp-output-for-mpiexec/m-p/1413360#M9831</guid>
      <dc:creator>Devorah_H_Intel</dc:creator>
      <dc:date>2022-09-07T21:10:04Z</dc:date>
    </item>
  </channel>
</rss>

