Skip to content

Commit

Permalink
NEST 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnnsnk committed Aug 21, 2024
1 parent c31e840 commit 040ff67
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Load modules and general exports:

::

module load Stages/2023 StdEnv/2023 CMake GCC GSL jemalloc Boost ParaStationMPI Python SciPy-Stack mpi4py h5py
module load Stages/2024 StdEnv/2024 CMake GCC GSL jemalloc Boost ParaStationMPI Python SciPy-Stack mpi4py h5py

jutil env activate -p <XXX>
export USERNAME=<XXX>
Expand All @@ -41,6 +41,7 @@ Install further Python packages via pip:
pip install --prefix=$PY_DIR git+https://github.com/INM-6/hybridLFPy@master

Then install and source :ref:`nest-label`.
With the modules named above, NEST 3.8 was used.

Finally, navigate to the repository `mesocircuit-model` and run:

Expand Down Expand Up @@ -81,11 +82,11 @@ NEST

cd $REPO_DIR
git clone https://github.com/nest/nest-simulator.git
git checkout tags/v3.4
git checkout tags/v3.8

export NEST_SRC_DIR=$REPO_DIR/nest-simulator
export NEST_BUILD_DIR=$SOFT_DIR/nest/nest_3_4/build
export NEST_INSTALL_DIR=$SOFT_DIR/nest/nest_3_4/install
export NEST_BUILD_DIR=$SOFT_DIR/nest/nest_3_8/build
export NEST_INSTALL_DIR=$SOFT_DIR/nest/nest_3_8/install

mkdir -p $NEST_BUILD_DIR
cd $NEST_BUILD_DIR
Expand Down
4 changes: 2 additions & 2 deletions mesocircuit/parameterization/base_system_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
# number of compute nodes
'num_nodes': 4,
# number of MPI processes per node
'num_mpi_per_node': 8,
'num_mpi_per_node': 2,
# number of threads per MPI process
'local_num_threads': 16,
'local_num_threads': 64,
# wall clock time
'wall_clock_time': '00:30:00'},
# analysis, plotting and analysis_and_plotting all use the same
Expand Down

0 comments on commit 040ff67

Please sign in to comment.