Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoicon
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
w2w
autoicon
Commits
8b23c52c
Commit
8b23c52c
authored
2 years ago
by
Fabian.Jakub
Browse files
Options
Downloads
Patches
Plain Diff
try single command openmpi install
parent
9c168783
No related branches found
No related tags found
1 merge request
!4
Switching to the advanced configuration method and fixing spack build.
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
conf/real-from-ideal/proj.yaml
+11
-4
11 additions, 4 deletions
conf/real-from-ideal/proj.yaml
platforms/common/spack_utils.sh
+24
-12
24 additions, 12 deletions
platforms/common/spack_utils.sh
templates/common/build_icon.sh
+7
-25
7 additions, 25 deletions
templates/common/build_icon.sh
with
42 additions
and
41 deletions
conf/real-from-ideal/proj.yaml
+
11
−
4
View file @
8b23c52c
spack
:
url
:
git@gitlab.physik.uni-muenchen.de:LDAP_rbg/spack.git
branch
:
lmu/ubuntu20.04-icon
compiler
:
gcc@11.3.0
#url: git@gitlab.physik.uni-muenchen.de:LDAP_rbg/spack.git
#branch: lmu/ubuntu20.04-icon
#compiler: gcc@11.3.0
url
:
https://github.com/spack/spack.git
branch
:
develop
compiler
:
gcc@12.2.0
root
:
%
HPCROOTDIR%/spack
# path to a spack install, will be cloned with git if not present
user_cache_path
:
%
HPCROOTDIR%/spack_user_cache_path
# spack puts data here when bootstrapping, leave empty to use home folder
disable_local_config
:
true
# if false, spack install into home folder
icon
:
version
:
2.6.5-nwp0
spack_cmd
:
openmpi%${SPACK_COMPILER}+pmi+legacylaunchers schedulers=slurm fabrics=ucx ucx%${SPACK_COMPILER}+dc+dm+ib_hw_tm+mlx5_dv+rc+rdmacm+thread_multiple+ud+verbs ^gettext@0.20.2%${SPACK_COMPILER}
version
:
master
python_environment
:
# Name of the virtual environment in the remote platform experiment folder
...
...
This diff is collapsed.
Click to expand it.
platforms/common/spack_utils.sh
+
24
−
12
View file @
8b23c52c
function
spack_env
()
{
export
SPACK_SETUP_ENV
=
spack/share/spack/setup-env.sh
export
SPACK_VENV
=
spack_icon_env
export
SPACK_USER_CACHE_PATH
=
${
WORKDIR
}
/SPACK_USER_CACHE_PATH
export
SPACK_DISABLE_LOCAL_CONFIG
=
true
export
SPACK_URL
=
%spack.url%
export
SPACK_BRANCH
=
%spack.branch%
export
SPACK_ROOT
=
%spack.root%
export
SPACK_COMPILER
=
%spack.compiler%
export
SPACK_DISABLE_LOCAL_CONFIG
=
%spack.disable_local_config%
if
[
!
-z
"%spack.user_cache_path%"
]
;
then
echo
"setting SPACK_USER_CACHE_PATH=%spack.user_cache_path%"
export
SPACK_USER_CACHE_PATH
=
%spack.user_cache_path%
fi
export
SPACK_SETUP_ENV
=
$SPACK_ROOT
/share/spack/setup-env.sh
}
function
install_spack
()
{
spack_env
#TODO: Would be good to enable the re-utilization of existing spack packages (via packages.yaml or upstreams.yaml)
if
[
!
-f
${
SPACK_SETUP_ENV
}
]
;
then
git clone
${
SPACK_URL
}
-b
${
SPACK_BRANCH
}
if
[
!
-f
${
SPACK_ROOT
}
]
;
then
git clone
${
SPACK_URL
}
-b
${
SPACK_BRANCH
}
${
SPACK_ROOT
}
fi
.
${
SPACK_SETUP_ENV
}
spack
env
create
$SPACK_VENV
spack
env
activate
-p
$SPACK_VENV
spack compiler find
if
[[
$(
spack compiler info
${
SPACK_COMPILER
}
)
]]
;
then
echo
"Found Compiler
$(
spack compiler info
${
SPACK_COMPILER
}
)
"
else
echo
"could not find compiler, will now try to install it... this may take a while"
spack
install
${
SPACK_COMPILER
}
spack compiler add
$(
spack location
--install-dir
$SPACK_COMPILER
)
fi
}
function
load_spack
()
{
spack_env
if
[
!
-f
${
SPACK_
SETUP_ENV
}
]
;
then
install_spack
;
fi
if
[
!
-f
${
SPACK_
ROOT
}
]
;
then
install_spack
;
fi
.
${
SPACK_SETUP_ENV
}
spack
env
activate
-p
$SPACK_VENV
}
This diff is collapsed.
Click to expand it.
templates/common/build_icon.sh
+
7
−
25
View file @
8b23c52c
# Get some variables provided by autosubmit.
# TODO: What do we do to ensure that these variables are defined in the proj file?
WORKDIR
=
%HPCROOTDIR%
ICON_VERSION
=
%ICON_VERSION%
SPACK_URL
=
%spack.url%
SPACK_BRANCH
=
%spack.branch%
SPACK_COMPILER
=
%spack.compiler%
ICON_VERSION
=
%icon.version%
# If the workdir directory does not exist create it
if
[
!
-d
${
WORKDIR
}
]
;
then
...
...
@@ -17,27 +14,12 @@ cd ${WORKDIR}
.
${
WORKDIR
}
/proj/platforms/common/spack_utils.sh
load_spack
if
[
$(
spack find icon-nwp@
${
ICON_VERSION
}
&>/dev/null
echo
$?
)
-ne
0
]
;
then
echo
"Installing icon-nwp@
${
ICON_VERSION
}
."
if
[[
$(
spack compiler info
${
SPACK_COMPILER
}
)
]]
;
then
echo
"Found Compiler"
else
echo
"could not find compiler, try to install it... this may take a while"
spack add
${
SPACK_COMPILER
}
spack
install
spack compiler add
$(
spack location
--install-dir
$SPACK_COMPILER
)
fi
spack add ucx%
${
SPACK_COMPILER
}
+dc+dm+ib_hw_tm+mlx5_dv+rc+rdmacm+thread_multiple+ud+verbs~cuda
spack add openmpi%
${
SPACK_COMPILER
}
+pmi+legacylaunchers~cuda
schedulers
=
slurm
fabrics
=
ucx
spack add icon-nwp@
${
ICON_VERSION
}
%
${
SPACK_COMPILER
}
^openmpi%
${
SPACK_COMPILER
}
spack
install
else
echo
"icon-nwp@
${
ICON_VERSION
}
already installed!"
SPACK_BUILD_ICON
=
%icon.spack_cmd%
if
[
!
-z
$SPACK_BUILD_ICON
]
;
then
echo
"Installing ICON with spack!"
echo
"cmd=
$SPACK_BUILD_ICON
"
spack
install
$SPACK_BUILD_ICON
spack load
$SPACK_BUILD_ICON
fi
# Need to get ECCODES DWD definitions:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment