Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philippe SWARTVAGHER
memory-contention
Commits
1bb2cf70
Commit
1bb2cf70
authored
Dec 08, 2021
by
Philippe SWARTVAGHER
Browse files
Add the Guix package definition for this project
parent
29c54dbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
guix-modules/memory-contention.scm
0 → 100644
View file @
1bb2cf70
(
define-module
(
guix-modules
memory-contention
)
#
:use-module
(
gnu
packages
autotools
)
#
:use-module
(
gnu
packages
mpi
)
#
:use-module
(
gnu
packages
pkg-config
)
#
:use-module
(
guix
build-system
gnu
)
#
:use-module
(
guix
git-download
)
#
:use-module
(
guix
licenses
)
#
:use-module
(
guix
packages
)
#
:use-module
(
inria
storm
))
(
define-public
memory-contention
(
package
(
name
"memory-contention"
)
(
version
"0.1"
)
(
home-page
"https://gitlab.inria.fr/pswartva/memory-contention"
)
(
source
(
origin
(
method
git-fetch
)
(
uri
(
git-reference
(
url
"https://gitlab.inria.fr/pswartva/memory-contention.git"
)
(
commit
"29c54dbb880b21c67d3c24719ee0fd4be537248e"
)))
(
file-name
(
string-append
name
"-checkout"
))
(
sha256
(
base32
"1w0h97rkagw1gm3cxn54g4diqlh60r2rnf6kiyvl99b1f2fy7g75"
))))
(
build-system
gnu-build-system
)
(
native-inputs
`
((
"autoconf"
,
autoconf
)
(
"pkg-config"
,
pkg-config
)
(
"automake"
,
automake
)))
(
propagated-inputs
`
((
"hwloc"
,
hwloc
"lib"
)
(
"mpi"
,
openmpi
)
(
"starpu"
,
starpu
)))
(
synopsis
"Set of benchmarks and tools to measure interferences between computations and communications"
)
(
description
"memory-contention is composed of a set of benchmarks to measure
the possible interferences between computations executed by CPU cores
and MPI communications. It contains also Python scripts to easily
plot and analyze the results of these benchmarks."
)
(
license
gpl3
)))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment