Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins
gem "kramdown-parser-gfm"
gem "mdl"

gem "webrick", "~> 1.8"
25 changes: 13 additions & 12 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,32 +20,32 @@
# installation. Remember to keep the leading slash on the
# `snippets` variable below!

snippets: "/snippets_library/ComputeCanada_Graham_slurm"
snippets: "/snippets_library/UWA_Kaya_slurm"

local:
prompt: "[user@laptop ~]$"
bash_shebang: "#!/usr/bin/env bash"

remote:
name: "Graham"
login: "graham.computecanada.ca"
host: "gra-login1"
node: "aci-377"
location: "University of Waterloo"
name: "kaya"
login: "kaya01.hpc.uwa.edu.au"
host: "kaya1"
node: "k001"
location: "The University of Western Australia"
homedir: "/home"
user: "yourUsername"
prompt: "[yourUsername@gra-login1 ~]$"
prompt: "[yourUsername@kaya01 ~]$"
module_python3: "python3"
bash_shebang: "#!/usr/bin/env bash"

sched:
name: "Slurm"
name: "SLURM"
submit:
name: "sbatch"
options: ""
queue:
debug: "debug"
testing: "testing"
debug: "short"
testing: "test"
status: "squeue"
flag:
user: "-u yourUsername"
Expand All @@ -70,7 +70,8 @@ episode_order:
- 15-transferring-files
- 16-parallel
- 17-resources
- 18-responsibility
- 18-using-r
- 19-responsibility

#------------------------------------------------------------
# Values for this lesson
Expand All @@ -90,7 +91,7 @@ title: "Introduction to High-Performance Computing"
email: "[email protected]"

# Life cycle stage of the lesson ("pre-alpha", "alpha", "beta", "stable")?
life_cycle: "alpha"
life_cycle: "beta"

#------------------------------------------------------------
# Generic settings (should not need to change).
Expand Down
2 changes: 1 addition & 1 deletion _episodes/11-hpc-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Let's dissect what resources programs running on a laptop require:

Schematically, this can be reduced to the following:

{% include figure.html url="" max-width="30%"
{% include figure.html url="" max-width="50%"
file="/fig/Simple_Von_Neumann_Architecture.svg"
alt="Schematic of how a computer works" caption="" %}

Expand Down
Loading