Skip to content

Commit

Permalink
py: add initial conduit.relay.mpi module and tests (#542)
Browse files Browse the repository at this point in the history
* py: add initial conduit.relay.mpi module and tests

* add docs and example python script for relay mpi

* update changelog

* relay mpi: skip py mpi tests on windows until we can get a sane ci setup
  • Loading branch information
cyrush committed Apr 20, 2020
1 parent 7aabe17 commit 0e723f1
Show file tree
Hide file tree
Showing 17 changed files with 3,803 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project aspires to adhere to [Semantic Versioning](https://semver.org/s

#### Relay
- Added an open mode option to RelayIOHandle. See RelayIOHandle docs (https://llnl-conduit.readthedocs.io/en/latest/relay_io.html#relay-i-o-handle-interface) for more details.
- Added the conduit.relay.mpi Python module to support Relay MPI in Python.

### Fixed

Expand Down
5 changes: 4 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,17 @@ install:
- conda install numpy
# try to import numpy to as conda gut-check
- python -c "import numpy as n; print(n.__version__); print(n.get_include());"
# try to import numpy to as conda gut-check
# Install MS-MPI
- ps: Start-FileDownload 'https://download.microsoft.com/download/B/2/E/B2EB83FE-98C2-4156-834A-E1711E6884FB/MSMpiSetup.exe'
- MSMpiSetup.exe -unattend
- set PATH=C:\Program Files\Microsoft MPI\Bin;%PATH%

# Install MS-MPI SDK
- ps: Start-FileDownload 'https://download.microsoft.com/download/B/2/E/B2EB83FE-98C2-4156-834A-E1711E6884FB/msmpisdk.msi'
- msmpisdk.msi /passive
- set PATH=C:\Program Files (x86)\Microsoft SDKs\MPI;%PATH%
# install mpi4py
- pip install mpi4py

# Install CMake 3.9
############################################################################
Expand Down
Loading

0 comments on commit 0e723f1

Please sign in to comment.