-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 76dc860 🚀
- Loading branch information
1 parent
086ff1a
commit 5c99b1a
Showing
25 changed files
with
279,663 additions
and
29 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ <h2 id=setting_up_the_environment_on_your_local_computer_with_vscode ><a href="# | |
</ol> | ||
<h2 id=setting_up_the_environment_on_gadi ><a href="#setting_up_the_environment_on_gadi" class=header-anchor >Setting up the environment on Gadi</a></h2> | ||
<p>First, we will need to log into Gadi. You will receive an email at some point with an invitation to create an account. At the end of the process, you will get a username and password (which you should change). If your username is <code>aaa777</code>, you can connect to Gadi by typing</p> | ||
<pre><code class="bash hljs">ssh [email protected]</code></pre> | ||
<pre><code class="bash hljs">ssh -X [email protected]</code></pre> | ||
<p>When prompted, enter your password. You should now be logged into Gadi and located in your home directory. We would also recommend setting up passwordless ssh access to Gadi (but it is not required).</p> | ||
<p>In addition to your home directory, you have access to a scratch space, a project-wide shared filesystem that is optimized for parallel access. This is where we will be working during the workshop. Start by creating a personal folder within the project's scratch space and linking it back to your home directory:</p> | ||
<pre><code class="bash hljs"><span class=hljs-built_in >mkdir</span> /scratch/vp91/<span class=hljs-variable >$USER</span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ <h2 id=setting_up_the_environment_on_your_local_computer_with_vscode ><a href="# | |
</ol> | ||
<h2 id=setting_up_the_environment_on_gadi ><a href="#setting_up_the_environment_on_gadi" class=header-anchor >Setting up the environment on Gadi</a></h2> | ||
<p>First, we will need to log into Gadi. You will receive an email at some point with an invitation to create an account. At the end of the process, you will get a username and password (which you should change). If your username is <code>aaa777</code>, you can connect to Gadi by typing</p> | ||
<pre><code class="bash hljs">ssh [email protected]</code></pre> | ||
<pre><code class="bash hljs">ssh -X [email protected]</code></pre> | ||
<p>When prompted, enter your password. You should now be logged into Gadi and located in your home directory. We would also recommend setting up passwordless ssh access to Gadi (but it is not required).</p> | ||
<p>In addition to your home directory, you have access to a scratch space, a project-wide shared filesystem that is optimized for parallel access. This is where we will be working during the workshop. Start by creating a personal folder within the project's scratch space and linking it back to your home directory:</p> | ||
<pre><code class="bash hljs"><span class=hljs-built_in >mkdir</span> /scratch/vp91/<span class=hljs-variable >$USER</span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
|
||
#cmd = ` | ||
# mpiexec -n 4 julia --project=. -O3 -e'using GadiTutorial; main_poisson((2,2))' | ||
#` | ||
#run(cmd) | ||
|
||
using GadiTutorial | ||
main_poisson(;nprocs=(1,1)) | ||
main_ins(;nprocs=1,mesh="perforated_plate_tiny.msh",T=0.02) | ||
main_ins(;nprocs=1,mesh="perforated_slab_tiny.msh",T=0.02) |
Oops, something went wrong.