<?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 Please tell me how to in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986230#M3558</link>
    <description>&lt;P&gt;Please tell me how to eliminate such an error. Thanks.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Nov 2013 17:37:06 GMT</pubDate>
    <dc:creator>dingjun_chencmgl_ca</dc:creator>
    <dc:date>2013-11-18T17:37:06Z</dc:date>
    <item>
      <title>about MPI benchmark 4.0 tests</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986229#M3557</link>
      <description>&lt;P&gt;Hi, Dear Sir or Madam,&lt;/P&gt;&lt;P&gt;I am testing your MPI benchmark 4.0 on my computer. but the following error occurred when building IMB-IO.EXE,&lt;/P&gt;&lt;P&gt;1&amp;nbsp;IntelliSense: expected an identifier&amp;nbsp;d:\dingjun\openmp_mpi_hybrid\imb-4.0-beta\imb\4.0.0\src\imb_benchmark.h&amp;nbsp;127&amp;nbsp;2&amp;nbsp;IMB-IO&lt;BR /&gt;&amp;nbsp;2&amp;nbsp;IntelliSense: expected an identifier&amp;nbsp;d:\dingjun\openmp_mpi_hybrid\imb-4.0-beta\imb\4.0.0\src\imb_benchmark.h&amp;nbsp;128&amp;nbsp;2&amp;nbsp;IMB-IO&lt;/P&gt;&lt;P&gt;the corresponding source codes are follows:&lt;/P&gt;&lt;P&gt;#ifdef MPIIO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Offset Offset;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; switch(fpos)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; case indv_block:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Offset = (MPI_Offset)(j_sample*totlen);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; case explicit:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Offset = c_info-&amp;gt;split.Offset+(MPI_Offset)(j_sample*totlen);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; case private:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Offset = (MPI_Offset)(j_sample*loclen);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; case shared:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Offset = (MPI_Offset)(-1);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#ifdef MPIIO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;typedef enum&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; nothing=-1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; explicit,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; indv_block,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; indv_cyclic,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; shared&lt;/P&gt;&lt;P&gt;} POSITIONING&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the C++ keywords "private" and " explicit" used as variables so that the MS visual studio failed to build the executable file. Please tell me how to handle this situation. Thanks and I look forward to hearing from you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 17:32:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986229#M3557</guid>
      <dc:creator>dingjun_chencmgl_ca</dc:creator>
      <dc:date>2013-11-18T17:32:51Z</dc:date>
    </item>
    <item>
      <title>Please tell me how to</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986230#M3558</link>
      <description>&lt;P&gt;Please tell me how to eliminate such an error. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 17:37:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986230#M3558</guid>
      <dc:creator>dingjun_chencmgl_ca</dc:creator>
      <dc:date>2013-11-18T17:37:06Z</dc:date>
    </item>
    <item>
      <title>It sounds like Visual Studio*</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986231#M3559</link>
      <description>&lt;P&gt;It sounds like Visual Studio* isn't properly compiling this as C code.&amp;nbsp; The names private and explicit are not keywords in C, but they are in C++.&lt;/P&gt;

&lt;P&gt;Are you using one of the Visual Studio* projects/solutions included with the Intel® MPI Benchmarks, or did you make your own?&amp;nbsp; If you are using one of the included projects/solutions, which one?&amp;nbsp; Which version of Visual Studio* are you using?&lt;/P&gt;

&lt;P&gt;I have Visual Studio 2012* here, and the three IMB-IO solutions all compiled correctly for me (with the non-2012 solutions automatically converted).&amp;nbsp; There is an option in Visual Studio* to specify whether to compile a code as C, C++, or automatically detect which one.&amp;nbsp; In my version, this is under Project Properties-&amp;gt;Configuration Properties-&amp;gt;C/C++-&amp;gt;Advanced-&amp;gt;Compile As.&amp;nbsp; Make certain this is set to Default or Compile as C Code.&lt;/P&gt;

&lt;P&gt;If you're still having problems after this, please let me know and I'll investigate further.&lt;/P&gt;

&lt;P&gt;Sincerely,&lt;BR /&gt;
	James Tullos&lt;BR /&gt;
	Technical Consulting Engineer&lt;BR /&gt;
	Intel® Cluster Tools&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 20:05:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986231#M3559</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2013-11-18T20:05:40Z</dc:date>
    </item>
    <item>
      <title>the IMB-IO problem from IMB 4</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986232#M3560</link>
      <description>&lt;P&gt;the IMB-IO problem from IMB 4.0 beta&lt;/P&gt;

&lt;P&gt;MS visual Studio 2010.&lt;/P&gt;

&lt;P&gt;Information on my computer is as follows:&lt;/P&gt;

&lt;P&gt;D:\Dingjun\OpenMP_MPI_hybrid\imb-4.0-beta\imb\4.0.0\WINDOWS\IMB-IO_VS_2010&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 20:10:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986232#M3560</guid>
      <dc:creator>dingjun_chencmgl_ca</dc:creator>
      <dc:date>2013-11-18T20:10:50Z</dc:date>
    </item>
    <item>
      <title> under Project Properties-</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986233#M3561</link>
      <description>&lt;P&gt;&amp;nbsp;under Project Properties-&amp;gt;Configuration Properties-&amp;gt;C/C++-&amp;gt;Advanced-&amp;gt;Compile As&lt;/P&gt;

&lt;P&gt;I have chosen such an option: &amp;nbsp;Compile as C Code (/TC)&lt;/P&gt;

&lt;P&gt;but the same&amp;nbsp;errors still occurred. Please see the following:&lt;/P&gt;

&lt;P&gt;&amp;nbsp;3&amp;nbsp;IntelliSense: expected an expression&amp;nbsp;d:\dingjun\openmp_mpi_hybrid\imb-4.0-beta\imb\4.0.0\src\imb_chk_diff.c&amp;nbsp;281&amp;nbsp;11&amp;nbsp;IMB-IO&lt;BR /&gt;
	&amp;nbsp;4&amp;nbsp;IntelliSense: expected an expression&amp;nbsp;d:\dingjun\openmp_mpi_hybrid\imb-4.0-beta\imb\4.0.0\src\imb_chk_diff.c&amp;nbsp;285&amp;nbsp;11&amp;nbsp;IMB-IO&lt;BR /&gt;
	&amp;nbsp;5&amp;nbsp;IntelliSense: expected an identifier&amp;nbsp;d:\dingjun\openmp_mpi_hybrid\imb-4.0-beta\imb\4.0.0\src\imb_benchmark.h&amp;nbsp;127&amp;nbsp;2&amp;nbsp;IMB-IO&lt;BR /&gt;
	&amp;nbsp;6&amp;nbsp;IntelliSense: expected an identifier&amp;nbsp;d:\dingjun\openmp_mpi_hybrid\imb-4.0-beta\imb\4.0.0\src\imb_benchmark.h&amp;nbsp;128&amp;nbsp;2&amp;nbsp;IMB-IO&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 20:16:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986233#M3561</guid>
      <dc:creator>dingjun_chencmgl_ca</dc:creator>
      <dc:date>2013-11-18T20:16:15Z</dc:date>
    </item>
    <item>
      <title>Thank you for the information</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986234#M3562</link>
      <description>&lt;P&gt;Thank you for the information.&amp;nbsp; I tested it in Visual Studio 2010*, and I am seeing the same problem.&amp;nbsp; Let me get this to our developers.&lt;/P&gt;

&lt;P&gt;Sincerely,&lt;BR /&gt;
	James Tullos&lt;BR /&gt;
	Technical Consulting Engineer&lt;BR /&gt;
	Intel® Cluster Tools&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2013 21:59:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986234#M3562</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2013-11-18T21:59:44Z</dc:date>
    </item>
    <item>
      <title> </title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986235#M3563</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Please tell my how to correct above errors in compilation. I look forward to hearing from you. &amp;nbsp;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2013 17:03:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986235#M3563</guid>
      <dc:creator>dingjun_chencmgl_ca</dc:creator>
      <dc:date>2013-12-11T17:03:23Z</dc:date>
    </item>
    <item>
      <title>We will not be fixing this,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986236#M3564</link>
      <description>&lt;P&gt;We will not be fixing this, as this error is not found in supported versions of Visual Studio.&amp;nbsp; VS2010 is not a supported version.&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 15:23:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/about-MPI-benchmark-4-0-tests/m-p/986236#M3564</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2015-05-26T15:23:11Z</dc:date>
    </item>
  </channel>
</rss>

