Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LinkTest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cstao-public
LinkTest
Commits
c8388935
Commit
c8388935
authored
4 months ago
by
alvarezmallon1
Committed by
Ilya Zhukov
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
Build example for JEDI
parent
fdc9dcca
No related branches found
No related tags found
1 merge request
!59
This enables the output during the retest phase to be more informative,
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
exampleBuildJEDI.sh
+40
-0
40 additions, 0 deletions
exampleBuildJEDI.sh
with
40 additions
and
0 deletions
exampleBuildJEDI.sh
0 → 100755
+
40
−
0
View file @
c8388935
#!/bin/bash
#############################################################################
## LinkTest ##
#############################################################################
## Copyright (c) 2008-2021 ##
## Forschungszentrum Juelich, Juelich Supercomputing Centre ##
## ##
## See the file COPYRIGHT in the package base directory for details ##
#############################################################################
# The example uses a system that supports MPI, TCP, UCX and IBVerbs.
# Minipmi is already installed in ~/.local
# Set-Up Environment
ml GCC OpenMPI SciPy-Stack SIONlib
;
# Use locallly installed minipmi, needed since we build with UCX and IBVerbs support
export
LIBRARY_PATH
=
$LIBRARY_PATH
:~/.local/lib/
;
export
CPATH
=
$CPATH
:~/.local/include/
;
# Install linktest in folder install
mkdir
-p
install_jedi
;
cd
benchmark
;
make clean
make
-j
HAVE_SION
=
1
HAVE_TCP
=
0
HAVE_UCP
=
0
PREFIX
=
../install_jedi
install
;
cd
..
;
# Install linktest-report
# FIX for JSC Systems
#export CPATH=$EBROOTSCIPYMINBUNDLE/lib/python3*/site-packages/numpy/core/include:$CPATH
#cd install_jedi;
#python3 -m venv linktest-report-venv;
#source linktest-report-venv/bin/activate
#cd ../python;
#python3 -m pip install .; #TODO: Add --use-feature=in-tree-build if using pip 21.0.X to 21.2.X (default from 21.3 onwards)
#deactivate;
#cd ..;
# Notice that we close the virtual environment, since this script is likely not sourced
# To use python-report one has to source linktest-report-venv/bin/activate again
# To uninstall: pip uninstall linktest, or remove the virtual environment completly
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