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
dca02f4d
You need to sign in or sign up before continuing.
Commit
dca02f4d
authored
2 years ago
by
Oriol Tintó
Browse files
Options
Downloads
Patches
Plain Diff
Indent for clarity.
parent
73ce91b5
No related branches found
No related tags found
1 merge request
!4
Switching to the advanced configuration method and fixing spack build.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
platforms/common/spack_utils.sh
+48
-50
48 additions, 50 deletions
platforms/common/spack_utils.sh
with
48 additions
and
50 deletions
platforms/common/spack_utils.sh
+
48
−
50
View file @
dca02f4d
function
_install_spack
()
{
if
[
!
-e
${
SPACK_ROOT
}
]
;
then
echo
"Cloning to
${
SPACK_ROOT
}
"
git clone
--depth
1
${
SPACK_URL
}
-b
${
SPACK_BRANCH
}
${
SPACK_ROOT
}
fi
_init_spack
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
if
[
!
-e
${
SPACK_ROOT
}
]
;
then
echo
"Cloning to
${
SPACK_ROOT
}
"
git clone
--depth
1
${
SPACK_URL
}
-b
${
SPACK_BRANCH
}
${
SPACK_ROOT
}
fi
_init_spack
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
_init_spack
()
{
#SPACK_INIT_CMD=$1
#SPACK_ROOT=$2
if
[
-z
"
$SPACK_INIT_CMD
"
]
&&
[
!
-z
"
${
SPACK_ROOT
}
"
]
;
then
echo
"Empty SPACK_INIT_CMD -> trying to source config file of spack root:
$SPACK_ROOT
/share/spack/setup-env.sh"
.
$SPACK_ROOT
/share/spack/setup-env.sh
else
echo
"Executing SPACK_INIT_CMD:
$SPACK_INIT_CMD
"
$SPACK_INIT_CMD
fi
#SPACK_INIT_CMD=$1
#SPACK_ROOT=$2
if
[
-z
"
$SPACK_INIT_CMD
"
]
&&
[
!
-z
"
${
SPACK_ROOT
}
"
]
;
then
echo
"Empty SPACK_INIT_CMD -> trying to source config file of spack root:
$SPACK_ROOT
/share/spack/setup-env.sh"
.
$SPACK_ROOT
/share/spack/setup-env.sh
else
echo
"Executing SPACK_INIT_CMD:
$SPACK_INIT_CMD
"
$SPACK_INIT_CMD
fi
}
function
load_spack
()
{
export
SPACK_INIT_CMD
=
$1
export
SPACK_ROOT
=
${
2
:-
spack
}
export
SPACK_URL
=
${
3
:-
https
://github.com/spack/spack.git
}
export
SPACK_BRANCH
=
${
4
:-
develop
}
export
SPACK_COMPILER
=
${
5
:-
gcc
@12.2.0
}
export
SPACK_DISABLE_LOCAL_CONFIG
=
${
6
:-
true
}
export
SPACK_USER_CACHE_PATH
=
${
7
:-${
SPACK_ROOT
}
/spack_user_cache_path
}
echo
"SPACK_INIT_CMD =
$SPACK_INIT_CMD
"
echo
"SPACK_ROOT =
$SPACK_ROOT
"
echo
"SPACK_URL =
$SPACK_URL
"
echo
"SPACK_BRANCH =
$SPACK_BRANCH
"
echo
"SPACK_COMPILER =
$SPACK_COMPILER
"
echo
"SPACK_DISABLE_LOCAL_CONFIG =
$SPACK_DISABLE_LOCAL_CONFIG
"
echo
"SPACK_USER_CACHE_PATH =
$SPACK_USER_CACHE_PATH
"
if
[
-z
"
$SPACK_USER_CACHE_PATH
"
]
;
then
unset
SPACK_USER_CACHE_PATH
fi
if
[
!
-e
${
SPACK_ROOT
}
]
&&
[
!
-z
"
${
SPACK_ROOT
}
"
]
;
then
_install_spack
;
fi
_init_spack
"
$SPACK_INIT_CMD
"
"
$SPACK_ROOT
"
echo
"Using spack from
$(
which spack
)
"
export
SPACK_INIT_CMD
=
$1
export
SPACK_ROOT
=
${
2
:-
spack
}
export
SPACK_URL
=
${
3
:-
https
://github.com/spack/spack.git
}
export
SPACK_BRANCH
=
${
4
:-
develop
}
export
SPACK_COMPILER
=
${
5
:-
gcc
@12.2.0
}
export
SPACK_DISABLE_LOCAL_CONFIG
=
${
6
:-
true
}
export
SPACK_USER_CACHE_PATH
=
${
7
:-${
SPACK_ROOT
}
/spack_user_cache_path
}
echo
"SPACK_INIT_CMD =
$SPACK_INIT_CMD
"
echo
"SPACK_ROOT =
$SPACK_ROOT
"
echo
"SPACK_URL =
$SPACK_URL
"
echo
"SPACK_BRANCH =
$SPACK_BRANCH
"
echo
"SPACK_COMPILER =
$SPACK_COMPILER
"
echo
"SPACK_DISABLE_LOCAL_CONFIG =
$SPACK_DISABLE_LOCAL_CONFIG
"
echo
"SPACK_USER_CACHE_PATH =
$SPACK_USER_CACHE_PATH
"
if
[
-z
"
$SPACK_USER_CACHE_PATH
"
]
;
then
unset
SPACK_USER_CACHE_PATH
fi
if
[
!
-e
${
SPACK_ROOT
}
]
&&
[
!
-z
"
${
SPACK_ROOT
}
"
]
;
then
_install_spack
;
fi
_init_spack
"
$SPACK_INIT_CMD
"
"
$SPACK_ROOT
"
echo
"Using spack from
$(
which spack
)
"
}
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