Erik Schnetter

Results 431 comments of Erik Schnetter

I don't know where this comes from. I checked briefly, and I found `core/src/HPX` as well. I couldn't check the details because Spack deletes the install directory after it reports...

I am using macOS where GCC is not available by default. I first installed `gcc @12.1.0 +bootstrap +graphite %apple-clang @13.1.6` via Spack. Then I used this [`spack.yaml`](https://gist.github.com/eschnett/f4d2858e2422ab365e4aa5778b6b3c19) to install a...

This document lists e.g. ``` template auto then(F&& func) -> future; ``` which says that the argument of "then" is of type F and is called "func". This name tells...

I don't know where the Haskell compiler learns about operator precedence and fixity. In case this information has to be read from `*.hi` files, I would want to suggest a...

I thought about this, and I think this wouldn't be scalable. This means that cmake would need to look for all possible MPI implementations, and it would fail if it...

Thanks for the pointer to `--enable-script-wrapper-compilers`.

The `--enable-script-wrapper-compilers` was very useful to know, but that is independent of the issue here. I am looking for a way to make finding MPI as easy as finding any...

In C, all MPI constants, types, and function names that mention "error handler" use the term `errhandler`. That makes it easy to remember the names. Currently, `MPI.jl` chooses `errhandler` for...

It seems that `MPI_Mprobe` was introduced in MPI 3. If this function is used prominently, then we need to update the required version of MPI everywhere. MPI guarantees that messages...

Definitively! These functions should be added. You'd need to make sure to check the MPI standard version, though – I don't recall how this is done, but there should be...