PetaVision is an open source, object oriented neural simulation toolbox optimized for high-performance multi-core, multi-node computer architectures.
Quick instructions for installing PetaVision and running the system tests:
Required dependencies:
Optional (but strongly suggested) dependencies:
Suggested additional tools:
Building:
git clone http://github.com/PetaVision/OpenPV.git
mkdir build
cd build
cmake ../OpenPV
make
Other build options:
# Debug build (Release is the default)
cmake -DCMAKE_BUILD_TYPE:String=Debug ../OpenPV
# If CUDA is installed but you don't want CUDA support
cmake -DPV_USE_CUDA:Bool=OFF ../OpenPV
# To specify a particular CUDA architecture
cmake -DPV_CUDA_ARCHITECTURE:String=[arch]
# [arch] can be a compute capability e.g. 7.0, an architecture name e.g. Volta,
# "Auto" to detect and use the compute capability of the current GPU,
# or left blank to use the default choice for the CUDA version
# Build with clang address sanitization
cmake -DPV_ADDRESS_SANITIZE:Bool=ON ../OpenPV
Running the system tests:
cd tests
ctest