Project Website | GitHub Repository | Online Documentation | Mailing List | Forum
Neurokernel is a Python framework for developing models of the fruit fly brain and executing them on multiple NVIDIA GPUs.
Neurokernel requires
- Linux (other operating systems may work, but have not been tested);
- Python;
- at least one NVIDIA GPU with Fermi architecture or later;
- NVIDIA's GPU drivers;
- CUDA 5.0 or later;
- OpenMPI 1.8.4 or later compiled with CUDA support.
To check what GPUs are in your system, you can use the inxi command available on most Linux distributions:
inxi -G
You can verify that the drivers are loaded as follows:
lsmod | grep nvidia
If no drivers are present, you may have to manually load them by running something like:
modprobe nvidia
as root.
Although some Linux distributions do include CUDA in their stock package repositories, you are encouraged to use those distributed by NVIDIA because they often are more up-to-date and include more recent releases of the GPU drivers. See this page for download information.
If you install Neurokernel in a virtualenv environment, you will need to install OpenMPI. See this page for OpenMPI installation information. Note that OpenMPI 1.8 cannot run on Windows.
Some of Neurokernel's demos require either ffmpeg or libav installed to generate visualizations (see Examples).
The easiest way to get neurokernel is to install it in a conda environment:
conda create -n nk python=3.7 c-compiler compilers cxx-compiler openmpi -c conda-forge -y conda activate nk python -m pip install neurokernel
Make sure to enable CUDA support in the installed OpenMPI by setting:
export OMPI_MCA_opal_cuda_support=true
Introductory examples of how to use Neurokernel to build and integrate models of different parts of the fly brain are available in the Neurodriver package. To install it run the following:
git clone https://github.com/neurokernel/neurodriver cd ~/neurodriver python setup.py develop
Other models built using Neurokernel are available on GitHub.
To build Neurokernel's HTML documentation locally, you will need to install
- mock 1.0 or later.
- sphinx 1.3 or later.
- sphinx_rtd_theme 0.1.6 or later.
Once these are installed, run the following:
cd ~/neurokernel/docs make html
See the included AUTHORS file for more information.
This software is licensed under the BSD License. See the included LICENSE file for more information.