<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<div>
<div>
<div>
<div style="direction: ltr;">Hi Nikhil,</div>
<div><br>
</div>
<div style="direction: ltr;">As you are using a mix of MPI and OpenMP, you have to use the executable with the extension psmp.</div>
<div><br>
</div>
<div style="direction: ltr;">You can find a table describing all the executables in the section 3 of the “how to compile” page:</div>
<div><br>
</div>
<div style="direction: ltr;">https://www.cp2k.org/howto:compile</div>
<div><br>
</div>
<div style="direction: ltr;">Yet, it does not explain why your calculation behaved as if there were 6 independent calculations.</div>
<div><br>
</div>
<div style="direction: ltr;">Please try the same calculation with the psmp executable and let me know how it goes.</div>
<div><br>
</div>
<div style="direction: ltr;">Regards,</div>
<div style="direction: ltr;">Pierre </div>
</div>
<div><br>
</div>
<div class="ms-outlook-ios-signature">Get <a href="https://aka.ms/o0ukef">Outlook for iOS</a></div>
</div>
<div> </div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="dir="ltr""><font face="Calibri, sans-serif" style="font-size:11pt"><b>From:</b> cp...@googlegroups.com on behalf of Chn <che...@gmail.com><br>
<b>Sent:</b> Saturday, September 28, 2019 3:03 a.m.<br>
<b>To:</b> cp2k<br>
<b>Subject:</b> Re: [CP2K:12283] Running Cp2k in parallel using thread in a PC
<div> </div>
</font></div>
<meta content="text/html; charset=utf-8">
<div dir="ltr">Hi Pierre,
<div>I tried to combine openMP with MPI as you mentioned above when I do vibrational analysis. I required 6 MPI threads and got 6 output files named as *-r-number.out, however in each file it printed that:</div>
<div>
<div class="prettyprint" style="background-color:rgb(250,250,250); border-color:rgb(187,187,187); border-style:solid; border-width:1px">
<code class="prettyprint">
<div class="subprettyprint">
<div class="subprettyprint"> GLOBAL| Total number of message passing processes                             1</div>
<div class="subprettyprint"> GLOBAL| Number of threads for this process                                  1</div>
<div class="subprettyprint"> GLOBAL| This output is from process                                       0</div>
</div>
</code></div>
also I used 'top' command and found that only 6 cores were busy. </div>
<div>I use 2 x 24 core processor, and set:</div>
<div>
<div class="prettyprint" style="background-color:rgb(250,250,250); border-color:rgb(187,187,187); border-style:solid; border-width:1px">
<code class="prettyprint">
<div class="subprettyprint">
<div class="subprettyprint">export OMP_NUM_THREADS=8</div>
<div class="subprettyprint">mpirun -n 6 /lib/CP2K/cp2k/exe/local/cp2k.popt -i project.inp -o output.out</div>
</div>
</code></div>
Any suggestion will be greatly appreciated..<br>
<br>
<br>
<br>
在 2019年9月20日星期五 UTC+8下午10:45:55,Pierre Cazade写道:
<blockquote class="gmail_quote" style="margin:0; margin-left:0.8ex; border-left:1px #ccc solid; padding-left:1ex">
<div bgcolor="#FFFFFF">Hello Nikhil,<br>
<br>
Withe command "mpirun -n 42 cp2k.pop -i inp.inp -o -out.out", you are requesting 42 MPI threads and not 42 OpenMP threads. MPI usually relies on replicated data which means that, for a poorly program software, it will request a total amount of memory which
 the amount of memory required by a scalar execution times the number of threads. This can very quickly become problematic, in particular for QM calculations. OpenMP, however relies on shared memory, the data is normally not replicated but shared between threads
 and therefore, in an ideal scenario, the amount of memory needed for 42 OpenMP threads is the same as a single one.<br>
<br>
This might explains why you calculation freezes. You are out of memory. On your workstation, you should only use the executable "cp2k.ssmp" which is the OpenMP version. Then you don't need the mpirun command:<br>
<br>
cp2k.ssmp -i inp.inp -o -out.out<br>
<br>
To control the number of OpenMP threads, set the env variable: OMP_NUM_THREADS, e.g. in bash, export OMP_NUM_THREADS=48<br>
<br>
Now, if you need to balance between MPI and OpenMP, you should use the executable named cp2k.psmp. Here is such an example:<br>
<br>
export OMP_NUM_THREADS=24<br>
mpirun -n 2 cp2k.psmp -i inp.inp -o -out.out<br>
<br>
In this example, I am requesting two MPI threads and each of them can use up to 24 OpenMP threads.<br>
<br>
Hope this clarifies things for you.<br>
<br>
Regards,<br>
Pierre<br>
<br>
<div>On 20/09/2019 14:09, Nikhil Maroli wrote:<br>
</div>
<blockquote type="cite">
<div dir="ltr">Dear all,
<div><br>
</div>
<div>I have installed all the versions of CP2K in my workstation with 2 x 12 core processor, total thread=48</div>
<div><br>
</div>
<div>I wanted to run cp2k in parallel using 42 threads, can anyone share the commands that i can use.</div>
<div><br>
</div>
<div>I have tried </div>
<div><br>
</div>
<div>mpirun -n 42 cp2k.pop -i inp.inp -o -out.out</div>
<div><br>
</div>
<div>After this command there is a rise in memory to 100 % and the whole system freezes. (i have 128GB ram).</div>
<div><br>
</div>
<div>Any suggestion will be greatly appreciated,</div>
</div>
-- <br>
You received this message because you are subscribed to the Google Groups "cp2k" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an email to
<a href="" target="_blank" rel="nofollow">cp...@googlegroups.<wbr>com</a>.<br>
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/cp2k/39284c57-f6eb-463e-81a6-3a123596a9f2%40googlegroups.com?utm_medium=email&utm_source=footer" target="_blank" rel="nofollow">
https://groups.google.com/d/<wbr>msgid/cp2k/39284c57-f6eb-463e-<wbr>81a6-3a123596a9f2%<wbr>40googlegroups.com</a>.<br>
</blockquote>
<br>
<pre cols="72">-- 
Dr Pierre Cazade, PhD
AD3-023, Bernal Institute,
University of Limerick,
Plassey Park Road,
Castletroy, co. Limerick,
Ireland</pre>
</div>
</blockquote>
</div>
</div>
<p></p>
-- <br>
You received this message because you are subscribed to the Google Groups "cp2k" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an email to
<a href="mailto:cp2k+unsu...@googlegroups.com">cp2k+unsu...@googlegroups.com</a>.<br>
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/cp2k/2d26c264-d73a-44de-af89-13ff0ac86f69%40googlegroups.com?utm_medium=email&utm_source=footer">
https://groups.google.com/d/msgid/cp2k/2d26c264-d73a-44de-af89-13ff0ac86f69%40googlegroups.com</a>.<br>
</div>
</body>
</html>