Commit 0e921948 authored by Ramon Nou's avatar Ramon Nou
Browse files

Merge branch...

Merge branch 'rnou/322-argobots-margo-mercury-should-be-updated-to-solve-corruption-issues-in-ucx' into 'master'

Resolve "argobots - margo - mercury should be updated to solve corruption issues in ucx"

Closes #322

Closes #322

See merge request !211
parents 3dfb2558 9179f0f6
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Unify dependency scripts (dl and compile): Unify `-d` and `-p` flags ([!174](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/174)).
- Increased merge assert for files with size 0, specific for DLIO with GekkoFS in Debug ([!208])(https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/208)).
- Added code to correct fork issues. `pthread_at_fork` cleans and starts GekkoFS ([!210](https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/210)).
### Removed
- Updated mochi to solve ucx corruption issues ([!211])(https://storage.bsc.es/gitlab/hpc/gekkofs/-/merge_requests/211)).
### Fixed

## [0.9.3] - 2024-07
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ FROM gekkofs/core:0.9.4-dev
LABEL Description="Debian-based environment to build GekkoFS"

ENV GKFS_PATH	/opt/gkfs
ENV GKFS_VERSION 0.9.3
ENV GKFS_VERSION 0.9.4

ENV SCRIPTS_PATH	${GKFS_PATH}/scripts
ENV DEPS_SRC_PATH	${GKFS_PATH}/deps_src
+3 −3
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ comment="All dependencies (except transport-specific and experimental)"
wgetdeps=(
    ["lz4"]="1.9.4"
    ["capstone"]="4.0.2"
    ["argobots"]="1.1"
    ["argobots"]="1.2"
    ["rocksdb"]="8.10.0"
    ["json-c"]="0.17-20230812"
)
@@ -47,8 +47,8 @@ wgetdeps=(
# Dependencies that must be cloned
clonedeps=(
    ["libfabric"]="HEAD@v1.20.1"
    ["mercury"]="v2.3.1"
    ["margo"]="v0.15.0"
    ["mercury"]="v2.4.0"
    ["margo"]="v0.18.3"
    ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d"
    ["agios"]="c26a6544200f823ebb8f890dd94e653d148bf226@development"
)
+3 −3
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ comment="Dependencies for PowerPC supercomputer"
wgetdeps=(
    ["lz4"]="1.9.4"
    ["capstone"]="4.0.2"
    ["argobots"]="1.1"
    ["argobots"]="1.2"
    ["rocksdb"]="8.10.0"
    ["json-c"]="0.17-20230812"
    ["psm2"]="11.2.185"
@@ -48,8 +48,8 @@ wgetdeps=(
# Dependencies that must be cloned
clonedeps=(
    ["libfabric"]="HEAD@v1.20.1"
    ["mercury"]="v2.3.1"
    ["margo"]="v0.15.0"
    ["mercury"]="v2.4.0"
    ["margo"]="v0.18.3"
    ["syscall_intercept"]="fb73c3924b502e2840a5dc8a18746e395b06a8a6"
)

+4 −4
Original line number Diff line number Diff line
@@ -37,16 +37,16 @@ comment="Dependencies required by the CI"

# Dependencies that must be downloaded directly
wgetdeps=(
    ["argobots"]="1.1"
    ["argobots"]="1.2"
    ["rocksdb"]="8.10.0"
    ["prometheus-cpp"]="v1.0.0"
    )

# Dependencies that must be cloned
clonedeps=(
    ["libfabric"]="HEAD@v1.17.0"
    ["mercury"]="v2.3.1"
    ["margo"]="v0.15.0"
    ["libfabric"]="HEAD@v1.20.1"
    ["mercury"]="v2.4.0"
    ["margo"]="v0.18.3"
    ["syscall_intercept"]="2c8765fa292bc9c28a22624c528580d54658813d"
    ["agios"]="c26a6544200f823ebb8f890dd94e653d148bf226@development"
    ["parallax"]="ffdea6e820f5c4c2d33e60d9a4b15ef9e6bbcfdd"
Loading