Windows HPC Server UNIX - Interoperability ForumDedicated to all aspects of UNIX integration with Windows HPC Server 2008 and Windows Compute Cluster Server 2003© 2009 Microsoft Corporation. All rights reserved.Sat, 10 Oct 2009 01:28:13 Zc1f2fee0-8b30-4dc2-8642-9fb833f49d50http://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/b3f50d9d-21cd-4e4c-896a-935e1147c48dhttp://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/b3f50d9d-21cd-4e4c-896a-935e1147c48dakiladilahttp://social.microsoft.com/Profile/en-US/?user=akiladilaSubmitting Jobs through Job Files/Job Submission Scripts/JSDLI've been searching high and low...mostly low for an example of submitting jobs to the Windows HPC Server Job Scheduler via a submission script.  With PBS, LSF, SGE, ... you can create job submission scripts that are similar to shell scripts to describe the resources needed for a job as well as the environment needed to run the job and the application to run. <div><br/></div> <div>All of the documentaiton that I've seen so far has mentioned a &quot;job file&quot;, but I've had a hard time finding one.  I did see a niftty little webcast by Steven Newhouse about using JSDL, but that seems a bit heavyweight for what I want to do.  So here are my questions:</div> <div><br/></div> <div>1. Is there a way to perform a jobs submission from the command-line, where I could use the syntax: --&gt; job submit some_file.xml?</div> <div>2. If the answer to question #1 is yes, then where can I find examples of the xml description needed to submit the job?</div> <div>3. If the answer to #1 is no, then what suggestions would you make for users who have applications that need to submit batch jobs, and basically feed the results</div> <div>of the stdout, stderr from the job submission to another application to parse the results?</div> <div><br/></div> <div>I know there are lots of cool APIs for doing this via the .NET framework, but I am working up to that. ;)</div> <div><br/></div> <div>Regards,</div> <div><br/>Aquil H. Abdullah</div>Mon, 24 Aug 2009 21:26:31 Z2009-10-10T01:28:13Zhttp://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/f5c24042-3688-40b7-9c79-dd90abd73922http://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/f5c24042-3688-40b7-9c79-dd90abd73922Luke Scharfhttp://social.microsoft.com/Profile/en-US/?user=Luke%20ScharfCygwin sshd?Has anyone else had trouble getting Cygwin sshd to work?<br/> <br/> I've followed the instructions here:<br/> <a title="http://www.petri.co.il/setup-ssh-server-vista.htm" href="http://www.petri.co.il/setup-ssh-server-vista.htm" title="http://www.petri.co.il/setup-ssh-server-vista.htm">http://www.petri.co.il/setup-ssh-server-vista.htm</a> <br/> <br/> The service does start.  However, whenever I attempt to connect, the following error shows up in the event log:<br/>      sshd: PID 5096: fatal: setreuid 500: No such process<br/> <br/> I've tried a number of variations on the configuration.  I've tried it with and without privilege separation, I've checked the service-definition with &quot;cygrunsrv -VQ sshd&quot;, and checked the user's rights with &quot;editrights -l -u sshd_server&quot;, and it all looks happy as near as I can determine.  But it keeps coming back to this setruid() problem.<br/> <br/> Any suggestions?<br/> <br/> Thanks,<br/> -Luke<br/>Tue, 04 Aug 2009 19:36:39 Z2009-08-04T22:05:41Zhttp://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/f1f5e6fd-b1b4-45ba-8d30-bf246adfe650http://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/f1f5e6fd-b1b4-45ba-8d30-bf246adfe650sjj698http://social.microsoft.com/Profile/en-US/?user=sjj698Using Windows HPC MPI from c++ in SUA?Hello,<br><br>I am trying to use the Windows HPC MPI library from c++ using windows SUA.<br>So i am pretty new to this<br><br>Here is my simple c++ example:<br><br><br><div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><font style="font-size:11px"></font><font style="color:gray">#include &lt;iostream&gt;</font><font style="font-size:11px"> </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)"><font style="color:blue">using</font><font style="font-size:11px"> </font><font style="color:blue">namespace</font><font style="font-size:11px"> std; </font></td></tr><tr><td> </td></tr><tr><td style="background-color:rgb(247, 247, 247)"><font style="color:blue">int</font><font style="font-size:11px"> main(){ </font></td></tr><tr><td>   cout &lt;&lt; <font style="color:blue">&quot;Hello World!\n&quot;</font><font style="font-size:11px">; </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">   <font style="color:blue">return</font><font style="font-size:11px"> 0 </font></td></tr><tr><td>} </td></tr></tbody></table></div><br><br>Compiled and ran it like this:<br><br><br><br><div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><font style="font-size:11px">bash-3.2$ cc -o main.exe main.cpp </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">bash-3.2$./main.exe </td></tr><tr><td>Hello World! </td></tr><tr><td style="background-color:rgb(247, 247, 247)">bash-3.2$ </td></tr></tbody></table></div><br><br>All looking good so far. <br><br>Now i want to include the mpi.h, here is my simple example:<br><br><div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><font style="font-size:11px"></font><font style="color:gray">#include &lt;stdlib.h&gt;</font><font style="font-size:11px"> </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)"><font style="color:gray">#include &lt;iostream&gt;</font><font style="font-size:11px"> </font></td></tr><tr><td><font style="color:gray">#include &lt;mpi.h&gt;</font><font style="font-size:11px"> </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)"> </td></tr><tr><td><font style="color:blue">using</font><font style="font-size:11px"> </font><font style="color:blue">namespace</font><font style="font-size:11px"> std; </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)"> </td></tr><tr><td><font style="color:blue">static</font><font style="font-size:11px"> </font><font style="color:blue">int</font><font style="font-size:11px"> mypid;       </font><font style="color:green">// PID of *this* node</font><font style="font-size:11px"> </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)"><font style="color:blue">static</font><font style="font-size:11px"> </font><font style="color:blue">int</font><font style="font-size:11px"> nnodes;      </font><font style="color:green">// number of nodes</font><font style="font-size:11px"> </font></td></tr><tr><td> </td></tr><tr><td style="background-color:rgb(247, 247, 247)"><font style="color:blue">int</font><font style="font-size:11px"> main(</font><font style="color:blue">int</font><font style="font-size:11px"> argc, </font><font style="color:blue">char</font><font style="font-size:11px"> *argv[]) </font></td></tr><tr><td>{ </td></tr><tr><td style="background-color:rgb(247, 247, 247)">    cout &lt;&lt; <font style="color:blue">&quot;Starting...&quot;</font><font style="font-size:11px"> &lt;&lt; endl; </font></td></tr><tr><td> </td></tr><tr><td style="background-color:rgb(247, 247, 247)">    <font style="color:green">// fire up MPI</font><font style="font-size:11px"> </font></td></tr><tr><td>    cout &lt;&lt; <font style="color:blue">&quot;call MPI_Init()..&quot;</font><font style="font-size:11px"> &lt;&lt; endl; </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">    MPI_Init(&amp;argc, &amp;argv); </td></tr><tr><td>    MPI_Comm_rank(MPI_COMM_WORLD, &amp;mypid); </td></tr><tr><td style="background-color:rgb(247, 247, 247)">    MPI_Comm_size(MPI_COMM_WORLD, &amp;nnodes); </td></tr><tr><td> </td></tr><tr><td style="background-color:rgb(247, 247, 247)">    <font style="color:green">// this test required two nodes</font><font style="font-size:11px"> </font></td></tr><tr><td>    cout &lt;&lt; <font style="color:blue">&quot;Rank &quot;</font><font style="font-size:11px"> &lt;&lt; mypid &lt;&lt; </font><font style="color:blue">&quot; of &quot;</font><font style="font-size:11px"> &lt;&lt; nnodes &lt;&lt; endl; </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)"> </td></tr><tr><td>    <font style="color:green">// clean up and exit</font><font style="font-size:11px"> </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">    cout &lt;&lt; <font style="color:blue">&quot;Clean up and exit...&quot;</font><font style="font-size:11px"> &lt;&lt; endl; </font></td></tr><tr><td>    MPI_Finalize(); </td></tr><tr><td style="background-color:rgb(247, 247, 247)">    <font style="color:blue">return</font><font style="font-size:11px">(0); </font></td></tr><tr><td>} </td></tr></tbody></table></div><br><br><br><br><br>Now here is where i get confused, if i try to compile this i get this error:<br><br><div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><font style="font-size:11px">bash-3.2$ cc -o simplempi.exe simplempi.cpp </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(7) : fatal error C1083: Cannot open </td></tr><tr><td> include file: 'mpi.h': No such file or directory </td></tr><tr><td style="background-color:rgb(247, 247, 247)">bash-3.2$ </td></tr></tbody></table></div><br><br><br>Which is ok as there is not an mpi.h for SUA. Now i would like to use the HPC mpi.h.<br>I downloaded and installed the HPC SDK pack (now i get the header files i need)<br><br><div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><font style="font-size:11px">bash-3.2$ ls -al  </font><font style="color:blue">&quot;/dev/fs/C/Program Files/Microsoft HPC Pack 2008 SDK/Include/&quot;</font><font style="font-size:11px"> </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">total 312 </td></tr><tr><td>drwxrwx---+ 1 +SYSTEM  +SYSTEM      0 Oct  3 08:33 . </td></tr><tr><td style="background-color:rgb(247, 247, 247)">drwxrwx---+ 1 +SYSTEM  +SYSTEM   4096 Oct  3 08:33 .. </td></tr><tr><td>-rwxrwx---+ 1 +SYSTEM  +SYSTEM  13674 Sep  2 15:12 job-v2.xsd </td></tr><tr><td style="background-color:rgb(247, 247, 247)">-rwxrwx---+ 1 +SYSTEM  +SYSTEM  47551 Sep 11 14:51 mpi.f90 </td></tr><tr><td>-rwxrwx---+ 1 +SYSTEM  +SYSTEM  53132 Sep 11 14:51 mpi.h </td></tr><tr><td style="background-color:rgb(247, 247, 247)">-rwxrwx---+ 1 +SYSTEM  +SYSTEM  15750 Sep 11 14:51 mpif.h </td></tr><tr><td>-rwxrwx---+ 1 +SYSTEM  +SYSTEM  18153 Sep 11 14:51 mpio.h </td></tr><tr><td style="background-color:rgb(247, 247, 247)">-rwxrwx---+ 1 +SYSTEM  +SYSTEM   6466 Sep  2 15:12 task-v2.xsd </td></tr><tr><td>bash-3.2$ </td></tr></tbody></table></div><br><br><br>I then tried to link these headers to my /usr/include (symbolic)  (Maybe this is where i am going wrong??)<br><br><div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><font style="font-size:11px">bash-3.2$ ln -s </font><font style="color:blue">&quot;/dev/fs/C/Program Files/Microsoft HPC Pack 2008 SDK/Include/&quot;</font><font style="font-size:11px">* /usr/include/ </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)"> </td></tr></tbody></table></div><br><br><br>Then tried to recompile, it attempts to load the mpi.h file but has trouble reading it.???<br>I tried mixed mode and g++/cc89/cc but without any luck<br><br><div style="overflow:auto;background-color:white;line-height:100% ! important;font-family:Courier New;font-size:11px"><table style="border-width:0px;margin:2px 0px;width:99%;border-collapse:collapse;background-color:rgb(255, 255, 255)" cellpadding=0 cellspacing=0><col style="font-family:Courier New;font-size:11px;padding-left:10px;white-space:nowrap"><tbody><tr><td><font style="font-size:11px">bash-3.2$ cc -o simplempi.exe simplempi.cpp </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">flip: /tmp/cc_tmp3_1117 <font style="color:blue">is</font><font style="font-size:11px"> a binary file, not converted </font></td></tr><tr><td>C:\Windows\SUA\usr\include\mpi.h(1) : error C2018: unknown character '0x1' </td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Windows\SUA\usr\include\mpi.h(1) : error C2143: syntax error : missing ';' before '/' </td></tr><tr><td>C:\Windows\SUA\usr\include\mpi.h(1) : error C4430: missing type specifier - intassumed. Note: C++ does not support <font style="color:blue">default</font><font style="font-size:11px">-</font><font style="color:blue">int</font><font style="font-size:11px"> </font></td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(16) : error C2065: 'cout' : undeclared identifier </td></tr><tr><td>C:\Users\Administrator\mpiTest\simplempi.cpp(16) : error C2065: 'endl' : undeclared identifier </td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(19) : error C2065: 'cout' : undeclared identifier </td></tr><tr><td>C:\Users\Administrator\mpiTest\simplempi.cpp(19) : error C2065: 'endl' : undeclared identifier </td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(20) : error C3861: 'MPI_Init': identifier not found </td></tr><tr><td>C:\Users\Administrator\mpiTest\simplempi.cpp(21) : error C2065: 'MPI_COMM_WORLD' : undeclared identifier </td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(21) : error C3861: 'MPI_Comm_rank': identifier not found </td></tr><tr><td>C:\Users\Administrator\mpiTest\simplempi.cpp(22) : error C2065: 'MPI_COMM_WORLD' : undeclared identifier </td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(22) : error C3861: 'MPI_Comm_size': identifier not found </td></tr><tr><td>C:\Users\Administrator\mpiTest\simplempi.cpp(25) : error C2065: 'cout' : undeclared identifier </td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(25) : error C2065: 'endl' : undeclared identifier </td></tr><tr><td>C:\Users\Administrator\mpiTest\simplempi.cpp(28) : error C2065: 'cout' : undeclared identifier </td></tr><tr><td style="background-color:rgb(247, 247, 247)">C:\Users\Administrator\mpiTest\simplempi.cpp(28) : error C2065: 'endl' : undeclared identifier </td></tr><tr><td>C:\Users\Administrator\mpiTest\simplempi.cpp(29) : error C3861: 'MPI_Finalize':identifier not found </td></tr><tr><td style="background-color:rgb(247, 247, 247)">bash-3.2$ </td></tr></tbody></table></div><br><br><br><br>So... I guess my question now is ,  is it possible?<br><br>Has anyone out there got an MPI example that works with  the windows mpi.h from SUA?<br>Can anyone see something wrong in the way i am approaching this problem?<br><br>Any help is very gratefully received!<br><br>Regards<br>Steven<br><br><br><br><br><br><br><br><br><br><br><br><br> <hr size=1 width="25%" align=left>sjjFri, 03 Oct 2008 15:01:04 Z2009-04-02T20:52:37Zhttp://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/dfb5de77-7a7b-42e4-a16b-56f52cd59b25http://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/dfb5de77-7a7b-42e4-a16b-56f52cd59b25genia kushnerhttp://social.microsoft.com/Profile/en-US/?user=genia%20kushnerNew features on HPC community site!<p align=left><font face=Calibri size=3></font> </p> <p class=MsoNormal style="margin:0in 0in 0pt 1.5in"><font face=Calibri size=3>I’m very excited to report that during the next few months the HPC community site will have some exciting new improvements.  These include:</font></p> <p class=MsoNormal style="margin:0in 0in 0pt 1.5in"><font face=Calibri size=3> </font></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.25in;text-indent:-0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'"><span style="">1.<span style="font:7pt 'Times New Roman'">       </span></span></span><span style="font-size:11pt;font-family:'Calibri','sans-serif'">New feature rich, robust forums platform</span></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.25in;text-indent:-0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'"><span style="">2.<span style="font:7pt 'Times New Roman'">       </span></span></span><span style="font-size:11pt;font-family:'Calibri','sans-serif'">Lots of white papers, code samples, how-to guides, etc about the V2 product</span></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.25in;text-indent:-0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'"><span style="">3.<span style="font:7pt 'Times New Roman'">       </span></span></span><span style="font-size:11pt;font-family:'Calibri','sans-serif'">Videos that cover all features of the product</span></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.25in;text-indent:-0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'"><span style="">4.<span style="font:7pt 'Times New Roman'">       </span></span></span><span style="font-size:11pt;font-family:'Calibri','sans-serif'">Interviews w HPC luminaries </span></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.25in;text-indent:-0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'"><span style="">5.<span style="font:7pt 'Times New Roman'">       </span></span></span><span style="font-size:11pt;font-family:'Calibri','sans-serif'">Dedicated HPC MVP’s</span></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.25in;text-indent:-0.25in"><span style="font-size:11pt;font-family:'Calibri','sans-serif'"><span style="">6.<span style="font:7pt 'Times New Roman'">       </span></span></span><span style="font-size:11pt;font-family:'Calibri','sans-serif'">Etc.</span></p> <p class=MsoNormal style="margin:0in 0in 0pt 1.5in"><font face=Calibri size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3>The transition to the new forums will start immediately (tomorrow, Thursday) and will result in a few hours of outage while data is ported over.  Your patience is appreciated.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3>The new forums platform (</font><a title="http://forums.msdn.microsoft.com/en-US/forums/" href="http://forums.msdn.microsoft.com/en-US/forums/"><span style="color:purple"><font face=Calibri size=3>MSDN</font></span></a><font face=Calibri size=3> | </font><a title="http://forums.technet.microsoft.com/en-us/Forums/" href="http://forums.technet.microsoft.com/en-us/Forums/"><span style="color:purple"><font face=Calibri size=3>TechNet</font></span></a><font face=Calibri size=3> | </font><a title="http://forums.expression.microsoft.com/en-US/forums/" href="http://forums.expression.microsoft.com/en-US/forums/"><span style="color:purple"><font face=Calibri size=3>Expression</font></span></a><font face=Calibri size=3> | </font><a title="http://forums.community.microsoft.com/en-US/forums/" href="http://forums.community.microsoft.com/en-US/forums/"><span style="color:purple"><font face=Calibri size=3>Microsoft</font></span></a><font face=Calibri size=3>) provides increased performance, stability, and an improved user experience.  To make sure this is a smooth transition, we want everyone using this forum to have a chance to try out the new forums in advance, and give feedback. We’ve created a </font><a title="http://forums.technet.microsoft.com/en-US/tnsandbox/threads/" href="http://forums.technet.microsoft.com/en-US/tnsandbox/threads/"><span style="color:purple"><font face=Calibri size=3>Sandbox forum</font></span></a><font face=Calibri size=3>, where you can create threads and try out functionality, and a </font><a title="http://forums.technet.microsoft.com/en-US/suggest/threads/" href="http://forums.technet.microsoft.com/en-US/suggest/threads/"><span style="color:purple"><font face=Calibri size=3>suggestions forum</font></span></a><font face=Calibri size=3> where you can give us your feedback. Please take some time to go to the new forums today and let us know what you think. </font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3> </font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3>On the day the forum moves to the new platform, a post will be made letting you know the process has been started, and the forum will be locked to new posts. Once the process is complete, a final post to the forum will be made letting you know the forum has moved.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3></font> </p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.5in;text-indent:-0.25in"><span style="font-family:'Calibri','sans-serif'"><font size=3>1.</font></span><span style="font-size:7pt"><font face="Times New Roman">       </font></span><font size=3><span style="font-family:'Calibri','sans-serif'">All posts in the forum will be preserved</span><span style="font-size:15pt"></span></font></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.5in;text-indent:-0.25in"><span style="font-family:'Calibri','sans-serif'"><font size=3>2.</font></span><span style="font-size:7pt"><font face="Times New Roman">       </font></span><font size=3><span style="font-family:'Calibri','sans-serif'">Any points you’ve received for replies will move with you (on a per forum basis)</span><span style="font-size:15pt"></span></font></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.5in;text-indent:-0.25in"><span style="font-family:'Calibri','sans-serif'"><font size=3>3.</font></span><span style="font-size:7pt"><font face="Times New Roman">       </font></span><font size=3><span style="font-family:'Calibri','sans-serif'">Any bookmarks to this forum or threads within this forum will redirect to their new location</span><span style="font-size:15pt"></span></font></p> <p class=MsoListParagraph style="margin:0in 0in 0pt 2.5in;text-indent:-0.25in"><span style="font-family:'Calibri','sans-serif'"><font size=3>4.</font></span><span style="font-size:7pt"><font face="Times New Roman">       </font></span><font size=3><span style="font-family:'Calibri','sans-serif'">Your “My Threads” will be preserved on the new platform</span><span style="font-size:15pt"></span></font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font size=3><font face=Calibri> <span style="font-size:12pt"></span></font></font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3>The only thing you’ll need to do after migration is set Windows Live Alerts for any threads you were tracking.</font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3></font> </p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3>If you have feedback, let us know in the </font><a title="http://forums.technet.microsoft.com/en-US/suggest/threads/" href="http://forums.technet.microsoft.com/en-US/suggest/threads/"><span style="color:purple"><font face=Calibri size=3>suggestions forum</font></span></a><font face=Calibri size=3> or contact Andrew.Brenner at Microsoft.com</font></p> <p class=MsoNormal style="margin:0in 0in 0pt 2in"><font face=Calibri size=3> </font></p>Wed, 04 Jun 2008 20:57:10 Z2009-03-25T20:09:24Zhttp://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/40bdcb25-f1f4-4741-ba79-3be1e79ab053http://social.microsoft.com/Forums/en-US/windowshpcinterop/thread/40bdcb25-f1f4-4741-ba79-3be1e79ab053manyu_adityahttp://social.microsoft.com/Profile/en-US/?user=manyu_adityaWindows Clusters unavailabilityHi,<br><br>I developed an application using the MPI.Net bindings for C# and other .Net languages available from Indiana University. Unfortunately these bindings cannot be used in a Linux environment because they are somehow tied to MS-MPI. Now, I don't have a test bed. I could test on my desktop but that is almost senseless.  Any help would be greatly appreciated. <br><br>Thanks in advance,<br><br>Abhimanyu<br>Tue, 04 Dec 2007 04:29:38 Z2009-03-25T20:07:02Z