Results 25 comments of Lucas C Wilcox

I don't know much about the cluster manager but WindowIO seems cool to me.

> It might be worth thinking about what a higher-level interface would look like. Here is some interesting discussion of possible C++ interfaces: > https://github.com/mpi-forum/mpi-issues/issues/288 I like this idea. It...

Can you just call [MPI_Get_version](https://www.open-mpi.org/doc/v1.8/man3/MPI_Get_version.3.php) at runtime to get the version?

True, personally I try to stick with MPI-1 only for my large scale codes. You never know what MPI function is going to break on you at scale (we once...

If there is a good reason I would be open to change however I would prefer to keep the code in the public domain. I don't know much about the...

> "One important reason why Creative Commons licenses should not be used to release software is that they aren’t compatible with existing free software licenses, [...]" https://creativecommons.org/2011/04/15/using-cc0-for-public-domain-software/. I think they...

A crash in `Iprobe`, weird.

If you want interactive use, [tmpi](https://github.com/Azrael3000/tmpi) works for me. It requires OpenMPI and tmux. So I use my system MPI install with ``` julia --project=. -e 'ENV["JULIA_MPI_BINARY"]="system"; using Pkg; Pkg.add("MPI");...

Michael Schlottke-Lakemper writes: > Personally, I think something like being able to send commands to all > ranks and collect unordered terminal output (just like a normal > execution of...