Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MSA Hello World
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Herten
MSA Hello World
Compare revisions
ae25efdcc2e14b8df104c0f87b7cea027dde2f6b to c43fe26633840547e7c431f49762d0e4b395a028
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
herten1/msa-hello-world
Select target project
No results found
c43fe26633840547e7c431f49762d0e4b395a028
Select Git revision
Branches
main
Swap
Target
herten1/msa-hello-world
Select target project
herten1/msa-hello-world
1 result
ae25efdcc2e14b8df104c0f87b7cea027dde2f6b
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add aux env scripts
· 485d1a7a
Andreas Herten
authored
1 year ago
485d1a7a
Merge branch 'main' of gitlab.jsc.fz-juelich.de:herten1/msa-hello-world
· c43fe266
Andreas Herten
authored
1 year ago
c43fe266
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
env.sh
+14
-0
14 additions, 0 deletions
env.sh
modules.sh
+9
-0
9 additions, 0 deletions
modules.sh
with
23 additions
and
0 deletions
env.sh
0 → 100644
View file @
c43fe266
project
=
"training2317"
export
JSCCOURSE_DIR_GROUP
=
/p/project/
$project
export
JSCCOURSE_DIR_LOCAL
=
${
JSCCOURSE_DIR_LOCAL_BASE
:-
$HOME
}
/MSA-Workshop
jutil
env
activate
-p
$project
-A
$project
export
_JSC_MATERIAL_SYNC
=
"rsync --archive --update --exclude='.*' --exclude='.*/'
$JSCCOURSE_DIR_GROUP
/material/
$JSCCOURSE_DIR_LOCAL
"
export
_JSC_MATERIAL_SYNC_FORCE
=
"rsync --archive --exclude='.*' --exclude='.*/'
$JSCCOURSE_DIR_GROUP
/material/
$JSCCOURSE_DIR_LOCAL
"
alias
jsc-material-sync
=
'bash -c "eval $_JSC_MATERIAL_SYNC"'
alias
jsc-material-sync-force
=
'bash -c "eval $_JSC_MATERIAL_SYNC_FORCE"'
export
MPI_HOME
=
$EBROOTPSMPI
source
${
JSCCOURSE_DIR_GROUP
}
/modules.sh
\ No newline at end of file
This diff is collapsed.
Click to expand it.
modules.sh
0 → 100644
View file @
c43fe266
if
[[
"
$SYSTEMNAME
"
==
"juwelsbooster"
||
"
$SYSTEMNAME
"
==
"juwels"
]]
;
then
echo
"Extending
\$
MODULEPATH with custom directory"
>
&2
module use /p/project/training2317/easybuild/
${
SYSTEMNAME
}
/modules/all/Compiler/mpi/GCC/11.3.0/
echo
"Loading MSA-aware ParaStationMPI module"
>
&2
module load GCC ParaStationMPI/5.8.1-1-msa-aware
else
echo
"Only JUWELS Cluster / JUWELS Booster are currently supported!"
fi
This diff is collapsed.
Click to expand it.