Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amdahl code, redux #411

Merged
merged 28 commits into from
Feb 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
450fc54
Revert "Merge pull request #410 from carpentries-incubator/revert-407…
tkphd Jun 23, 2022
11ad96c
Revert "Merge pull request #410 from carpentries-incubator/revert-407…
tkphd Jun 23, 2022
8a6f91b
Substitute Amdahl tarball for lesson files
tkphd Jan 19, 2023
5403b6a
Merge branch 'amdahl-code-redux' of github:tkphd/hpc-intro into amdah…
tkphd Jan 19, 2023
2309e99
pip install amdahl in parallel episode
tkphd Jan 19, 2023
971442d
fix missing blockquote tags
tkphd Jan 19, 2023
64e034a
see amdahl not cpi in history
tkphd Jan 19, 2023
0eb4195
update Python version
tkphd Jan 19, 2023
fb93453
updated server name
tkphd Jan 19, 2023
115f82d
a few readability fixes
tkphd Jan 19, 2023
decb121
remove unused tarball, consolidate pi code in new tarball
tkphd Jan 31, 2023
2155be8
Ask learners to think about why a transfer may not work
tkphd Jan 31, 2023
b2baaa7
Expand on the remote_destination for scp
tkphd Jan 31, 2023
44dee4f
Clarify that remote_path may not exist
tkphd Jan 31, 2023
4e305be
discuss the tarball before transferring it
tkphd Jan 31, 2023
11c0f81
Merge branch 'amdahl-code-redux' of github:tkphd/hpc-intro into amdah…
tkphd Jan 31, 2023
de82b5d
Ask learners to think about why a transfer may not work
tkphd Jan 31, 2023
4181a65
Expand on the remote_destination for scp
tkphd Jan 31, 2023
5eafc00
Clarify that remote_path may not exist
tkphd Jan 31, 2023
2851268
remove unused tarball, consolidate pi code in new tarball
tkphd Jan 31, 2023
fac84f2
discuss the tarball before transferring it
tkphd Jan 31, 2023
1d489ba
Merge branch 'amdahl-bad-merge' into amdahl-code-redux
tkphd Feb 3, 2023
7dfc411
clean up & clarify a thing or two
tkphd Feb 10, 2023
7b9c78e
revised discussion of tar and scp flags & fields
tkphd Feb 15, 2023
9b656ad
use nano to edit bashrc
tkphd Feb 16, 2023
470c4c5
substitute previously-seen example job ID
tkphd Feb 16, 2023
62fd20d
resolve build failure
tkphd Feb 16, 2023
160e626
Update _episodes/16-parallel.md
ocaisa Feb 16, 2023
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
8 changes: 4 additions & 4 deletions .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: '3.9'
- name: Install codespell
run: |
pip3 install codespell
python3 -m pip install codespell
- name: Check spelling
run: |
make spellcheck
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Install basic requirements
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- Magic_Castle_EESSI_slurm
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Install basic requirements
Expand Down
Loading