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
691003be
Commit
691003be
authored
2 years ago
by
Oriol Tintó
Browse files
Options
Downloads
Patches
Plain Diff
Add user_config_path.
parent
82eeadd1
No related branches found
Branches containing commit
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/common/build.yml
+1
-0
1 addition, 0 deletions
conf/common/build.yml
platforms/common/spack_utils.sh
+11
-5
11 additions, 5 deletions
platforms/common/spack_utils.sh
templates/common/build_icon.sh
+6
-1
6 additions, 1 deletion
templates/common/build_icon.sh
with
18 additions
and
6 deletions
conf/common/build.yml
+
1
−
0
View file @
691003be
...
@@ -8,6 +8,7 @@ spack:
...
@@ -8,6 +8,7 @@ spack:
compiler
:
gcc@12.2.0
# desired compiler for spack
compiler
:
gcc@12.2.0
# desired compiler for spack
root
:
"
%HPCROOTDIR%/spack"
# path to a spack install, will be downloaded to if not present
root
:
"
%HPCROOTDIR%/spack"
# path to a spack install, will be downloaded to if not present
user_cache_path
:
"
%HPCROOTDIR%/spack_user_cache_path"
# spack puts data here when bootstrapping, leave empty to use home folder
user_cache_path
:
"
%HPCROOTDIR%/spack_user_cache_path"
# spack puts data here when bootstrapping, leave empty to use home folder
user_config_path
:
"
%HPCROOTDIR%/spack_user_config_path"
# spack puts data here when bootstrapping, leave empty to use home folder
disable_local_config
:
true
# if false, spack install into home folder
disable_local_config
:
true
# if false, spack install into home folder
build_cmd
:
"
icon-nwp@%ICON.VERSION%%
%SPACK.COMPILER%
^openmpi+pmi+legacylaunchers
schedulers=slurm
fabrics=ucx
ucx+dc+dm+ib_hw_tm+mlx5_dv+rc+rdmacm+thread_multiple+ud+verbs
^gettext@0.20.2
"
build_cmd
:
"
icon-nwp@%ICON.VERSION%%
%SPACK.COMPILER%
^openmpi+pmi+legacylaunchers
schedulers=slurm
fabrics=ucx
ucx+dc+dm+ib_hw_tm+mlx5_dv+rc+rdmacm+thread_multiple+ud+verbs
^gettext@0.20.2
"
...
...
This diff is collapsed.
Click to expand it.
platforms/common/spack_utils.sh
+
11
−
5
View file @
691003be
...
@@ -29,12 +29,13 @@ function _init_spack() {
...
@@ -29,12 +29,13 @@ function _init_spack() {
function
load_spack
()
{
function
load_spack
()
{
export
SPACK_INIT_CMD
=
$1
export
SPACK_INIT_CMD
=
$1
export
SPACK_ROOT
=
$2
# i.e.: spack
export
SPACK_ROOT
=
$2
# i.e.: spack
export
SPACK_URL
=
$3
# i.e.: https://github.com/spack/spack.git
export
SPACK_URL
=
$3
# i.e.: https://github.com/spack/spack.git
export
SPACK_BRANCH
=
$4
# i.e.: develop
export
SPACK_BRANCH
=
$4
# i.e.: develop
export
SPACK_COMPILER
=
$5
# i.e.: gcc@12.2.0
export
SPACK_COMPILER
=
$5
# i.e.: gcc@12.2.0
export
SPACK_DISABLE_LOCAL_CONFIG
=
$6
# i.e.: true
export
SPACK_DISABLE_LOCAL_CONFIG
=
$6
# i.e.: true
export
SPACK_USER_CACHE_PATH
=
$7
# i.e.: ${SPACK_ROOT}/spack_user_cache_path
export
SPACK_USER_CACHE_PATH
=
$7
# i.e.: ${SPACK_ROOT}/spack_user_cache_path
export
SPACK_USER_CONFIG_PATH
=
$8
# i.e.: ${SPACK_ROOT}/spack_user_config_path
echo
"SPACK_INIT_CMD =
$SPACK_INIT_CMD
"
echo
"SPACK_INIT_CMD =
$SPACK_INIT_CMD
"
echo
"SPACK_ROOT =
$SPACK_ROOT
"
echo
"SPACK_ROOT =
$SPACK_ROOT
"
...
@@ -43,11 +44,16 @@ function load_spack() {
...
@@ -43,11 +44,16 @@ function load_spack() {
echo
"SPACK_COMPILER =
$SPACK_COMPILER
"
echo
"SPACK_COMPILER =
$SPACK_COMPILER
"
echo
"SPACK_DISABLE_LOCAL_CONFIG =
$SPACK_DISABLE_LOCAL_CONFIG
"
echo
"SPACK_DISABLE_LOCAL_CONFIG =
$SPACK_DISABLE_LOCAL_CONFIG
"
echo
"SPACK_USER_CACHE_PATH =
$SPACK_USER_CACHE_PATH
"
echo
"SPACK_USER_CACHE_PATH =
$SPACK_USER_CACHE_PATH
"
echo
"SPACK_USER_CONFIG_PATH =
$SPACK_USER_CONFIG_PATH
"
if
[
-z
"
$SPACK_USER_CACHE_PATH
"
]
;
then
if
[
-z
"
$SPACK_USER_CACHE_PATH
"
]
;
then
unset
SPACK_USER_CACHE_PATH
unset
SPACK_USER_CACHE_PATH
fi
fi
if
[
-z
"
$SPACK_USER_CONFIG_PATH
"
]
;
then
unset
SPACK_USER_CONFIG_PATH
fi
if
[
!
-e
${
SPACK_ROOT
}
]
&&
[
!
-z
"
${
SPACK_ROOT
}
"
]
;
then
_install_spack
;
fi
if
[
!
-e
${
SPACK_ROOT
}
]
&&
[
!
-z
"
${
SPACK_ROOT
}
"
]
;
then
_install_spack
;
fi
_init_spack
"
$SPACK_INIT_CMD
"
"
$SPACK_ROOT
"
_init_spack
"
$SPACK_INIT_CMD
"
"
$SPACK_ROOT
"
...
...
This diff is collapsed.
Click to expand it.
templates/common/build_icon.sh
+
6
−
1
View file @
691003be
...
@@ -11,8 +11,13 @@ fi
...
@@ -11,8 +11,13 @@ fi
# Go to the working directory
# Go to the working directory
cd
${
WORKDIR
}
cd
${
WORKDIR
}
export
SPACK_USER_CONFIG_PATH
=
${
WORKDIR
}
/
.
${
WORKDIR
}
/proj/platforms/common/spack_utils.sh
.
${
WORKDIR
}
/proj/platforms/common/spack_utils.sh
load_spack
"%spack.init%"
"%spack.root%"
"%spack.url%"
"%spack.branch%"
"%spack.compiler%"
"%spack.disable_local_config%"
"%spack.user_cache_path%"
load_spack
"%spack.init%"
"%spack.root%"
"%spack.url%"
"%spack.branch%"
"%spack.compiler%"
"%spack.disable_local_config%"
"%spack.user_cache_path%"
"%spack.user_config_path%"
SPACK_BUILD_ICON
=
"%spack.build_cmd%"
SPACK_BUILD_ICON
=
"%spack.build_cmd%"
if
[
!
-z
"
$SPACK_BUILD_ICON
"
]
;
then
if
[
!
-z
"
$SPACK_BUILD_ICON
"
]
;
then
...
...
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