Skip to content
Snippets Groups Projects
Commit fac02680 authored by Ali Mohammed's avatar Ali Mohammed
Browse files

cleanup readme and install, add HPED copyright

parent 66a87583
No related branches found
No related tags found
No related merge requests found
Pipeline #128088 canceled
name: CI-devel
on: [push]
jobs:
gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
gcc
git
libyaml-dev
make
valgrind
- name: build
run: make
- name: test
run: make test
- name: valgrind test
run: make valgrind-quiet
- name: sanitize test
run: make VARIANT=san test
clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
clang
git
libyaml-dev
make
valgrind
- name: build
run: make CC=clang
- name: test
run: make test CC=clang
- name: valgrind test
run: make valgrind-quiet CC=clang
- name: sanitize test
run: make CC=clang VARIANT=san test
name: CI
on:
push:
branches:
- master
jobs:
gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
gcc
git
libyaml-dev
make
valgrind
- name: build
run: make
- name: test
run: make test
- name: valgrind test
run: make valgrind-quiet
- name: sanitize test
run: make VARIANT=san test
clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
clang
git
libyaml-dev
make
valgrind
- name: build
run: make CC=clang
- name: test
run: make test CC=clang
- name: valgrind test
run: make valgrind-quiet CC=clang
- name: sanitize test
run: make CC=clang VARIANT=san test
name: Coverage
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Python
uses: actions/setup-python@master
with:
version: 3.7
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
gcc
gcovr
git
libyaml-dev
make
- name: coverage test
run: make coverage
- name: filter output
run: find build/coverage -name "*.gc*" -type f -delete;
- name: upload coverage
uses: codecov/codecov-action@v1.0.3
with:
token: ${{secrets.CODECOV_TOKEN}}
file: build/coverage.xml
flags: unittests
name: codecov-umbrella
# Prerequisites # Prerequisites
You will need a `C compiler` capable of understanding `C11`, as well as `posix threads`. You will need a `C compiler` capable of understanding `C11`, as well as `posix threads`.
Also, you will need `autoreconf` and `libtool` for configuring Maestro build system. Also, you will need `autoreconf` and `libtool` for configuring Maestro build system.
deps/c-timestamp
deps/libcyaml
deps/libfabric
deps/libyaml
deps/mamba
deps/mio
deps/protobuf
deps/protobuf-c
#### Subtree projects and updates #### Subtree projects and updates
We are including a number of external dependency libraries as subtrees in our tree under `./deps/` We are including a number of external dependency libraries as subtrees in our tree under `./deps/`
...@@ -76,18 +63,6 @@ automake's test infrastructure: ...@@ -76,18 +63,6 @@ automake's test infrastructure:
This will start a single-node exclusive job for each individual test, and each will get a different DRC This will start a single-node exclusive job for each individual test, and each will get a different DRC
token. token.
#### jupiter system
Do not use one of the `craype-network-ofi\*` modules at this time.
`libfabric` builds nicely with CCE 9.0.
### sage prototype
Please load the following modules before configuring/building.
```
module use $CLIENT_MOD_PATH
module swap gnu GCC/9.3.0
module load Autotools git binutils pkg-config libreadline
```
## Calling autoreconf ## Calling autoreconf
...@@ -115,7 +90,7 @@ Be sure to use `CC=cc` on the configure line. ...@@ -115,7 +90,7 @@ Be sure to use `CC=cc` on the configure line.
By default, the OFI conductor will be built. To enable the experimental other variants By default, the OFI conductor will be built. To enable the experimental other variants
`--enable-mpi-pool-manager` or `--enable-smp-pool-manager` at configure time (INCOMPLETE). `--enable-mpi-pool-manager` or `--enable-smp-pool-manager` at configure time (INCOMPLETE).
We are also including Version 0.1.0 of the Mamba library in deps/mamba, and a snapshot of MIO in deps/mio. We are also including Version 0.1.8 of the Mamba library in deps/mamba, and a snapshot of MIO in deps/mio.
To use MIO you need to add the `--with-mio` flag at configure time, and have MERO installed on the system. To use MIO you need to add the `--with-mio` flag at configure time, and have MERO installed on the system.
......
Copyright © 2023 Hewlett Packard Enterprise Development LP
Copyright (C) 2019 Cray Computer GmbH Copyright (C) 2019 Cray Computer GmbH
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
Maestro is a data- and memory-aware middleware framework that addresses the ubiquitous problems of data movement in complex memory hierarchies that exist at multiple levels of the HPC software stack. Maestro is a data- and memory-aware middleware framework that addresses the ubiquitous problems of data movement in complex memory hierarchies that exist at multiple levels of the HPC software stack.
<img alt="Maestro architecture overview image" src="docs/maestro-arch-overview.png"> <img alt="Maestro architecture overview image" src="maestro-arch-overview.png">
This repository contains the Maestro Core Library. This repository contains the Maestro Core Library.
......
# Copyright (C) 2020 Cray Computer GmbH
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
set terminal png
set output "ju_diff100k.png"
set font "Helvetica"
set title 'Juelich/issue6/1; jupiter; BW; rep1; diff100k; /=decl\_per\_cdo'
set key right
set log y
set xlabel "declarations per CDO"
set ylabel "time (ms)"
set style function linespoints
plot 'pool_local_multi.dat' using 2:xtic(1) title "1 thread" with linespoints, '' using 3 title "4 threads" with linespoints, '' using 4 title "8 threads" with linespoints, '' using 5 title "12 threads" with linespoints, '' using 8 title "24 threads" with linespoints
#!/usr/bin/env bash
#
# Post-treatment and visualization of ../tests/check_pool_local_multi
#
# Copyright (C) 2020 Cray Computer GmbH
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
output="pool_local_multi.dat"
gnuplot_script="visu_pool_local_multi.p"
../tests/check_pool_local_multi > tmp
# remove the first two lines and the last three lines (written by `cheat`)
head -n -3 tmp | sed -e '1,2d' > $output
gnuplot $gnuplot_script
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment