Skip to content

Commit 717a560

Browse files
authored
Merge PR #147 from tudasc/devel
2 parents c734790 + 985e4e0 commit 717a560

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TypeART · [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) ![](https://github.com/tudasc/TypeART/workflows/TypeART-CI/badge.svg?branch=master) ![](https://github.com/tudasc/TypeART/workflows/TypeART-CI-ext/badge.svg?branch=master) [![Coverage Status](https://coveralls.io/repos/github/tudasc/TypeART/badge.svg?branch=master)](https://coveralls.io/github/tudasc/TypeART)
1+
# TypeART · [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) ![](https://github.com/tudasc/TypeART/actions/workflows/basic-ci.yml/badge.svg?branch=master) ![](https://github.com/tudasc/TypeART/actions/workflows/ext-ci.yml/badge.svg?branch=master) [![Coverage Status](https://coveralls.io/repos/github/tudasc/TypeART/badge.svg?branch=master)](https://coveralls.io/github/tudasc/TypeART?branch=master)
22

33
## What is TypeART?
44

@@ -30,13 +30,13 @@ To demonstrate the utility of TypeART, consider the following code:
3030
```c
3131
// Otherwise unknown to MUST, TypeART tracks this allocation (memory address, type and size):
3232
double* array = (double*) malloc(length*sizeof(double));
33-
// MUST intercepts this MPI call, and asks TypeARTs runtime library for type information:
33+
// MUST intercepts this MPI call, asking TypeART's runtime for type information:
3434
// 1. Is the first argument of type double (due to MPI_DOUBLE)?
3535
// 2. Is the allocation at least of size *length*?
3636
MPI_Send((void*) array, length, MPI_DOUBLE, ...)
3737
```
3838
39-
MUST and TypeART also support MPI [derived datatypes](https://www.mpi-forum.org/docs/mpi-3.1/mpi31-report/node77.htm)
39+
MUST and TypeART also support MPI [derived datatypes](https://www.mpi-forum.org/docs/mpi-4.1/mpi41-report/node96.htm)
4040
with complex underlying data structures. For further details, see
4141
our [publications](#references), or download MUST (v1.8 or higher integrates TypeART) from
4242
its [project page](https://itc.rwth-aachen.de/must/).

0 commit comments

Comments
 (0)