Skip to content

Commit

Permalink
MPI n_procs back to 2; CicleCI python=3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cjayb authored and jasmainak committed Feb 25, 2021
1 parent f629016 commit 4b9be51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
command: |
export PATH=~/miniconda/bin:$PATH
conda update --yes --quiet conda
conda create -n testenv --yes pip python=3.7
conda create -n testenv --yes pip python=3.6
source activate testenv
conda install --yes scipy numpy matplotlib
pip install mne psutil mpi4py joblib
Expand Down
3 changes: 1 addition & 2 deletions examples/plot_simulate_mpi_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@
# ``openmpi``, which must be installed on the system
from hnn_core import MPIBackend

n_procs = 1
with MPIBackend(n_procs=n_procs, mpi_cmd='mpiexec'):
with MPIBackend(n_procs=2, mpi_cmd='mpiexec'):
dpls = simulate_dipole(net, n_trials=1, postproc=False)

trial_idx = 0
Expand Down

0 comments on commit 4b9be51

Please sign in to comment.