%A Zaytsev,Yury %A Morrison,Abigail %D 2014 %J Frontiers in Neuroinformatics %C %F %G English %K python language,neural simulator,maintainability,technical debt,HPC %Q %R 10.3389/fninf.2014.00023 %W %L %M %P %7 %8 2014-March-14 %9 Original Research %+ Mr Yury Zaytsev,Jülich Aachen Research Alliance, Jülich Research Center,Simulation Laboratory Neuroscience - Bernstein Facility for Simulation and Database Technology, Institute for Advanced Simulation,Jülich,52425,Germany,yury@shurup.com %+ Mr Yury Zaytsev,Albert-Ludwig University of Freiburg,Faculty of Biology,Schaenzlestrasse 1,Freiburg im Breisgau,79104,Germany,yury@shurup.com %# %! Maintainable Python bindings for NEST %* %< %T CyNEST: a maintainable Cython-based interface for the NEST simulator %U https://www.frontiersin.org/articles/10.3389/fninf.2014.00023 %V 8 %0 JOURNAL ARTICLE %@ 1662-5196 %X NEST is a simulator for large-scale networks of spiking point neuron models (Gewaltig and Diesmann, 2007). Originally, simulations were controlled via the Simulation Language Interpreter (SLI), a built-in scripting facility implementing a language derived from PostScript (Adobe Systems, Inc., 1999). The introduction of PyNEST (Eppler et al., 2008), the Python interface for NEST, enabled users to control simulations using Python. As the majority of NEST users found PyNEST easier to use and to combine with other applications, it immediately displaced SLI as the default NEST interface. However, developing and maintaining PyNEST has become increasingly difficult over time. This is partly because adding new features requires writing low-level C++ code intermixed with calls to the Python/C API, which is unrewarding. Moreover, the Python/C API evolves with each new version of Python, which results in a proliferation of version-dependent code branches. In this contribution we present the re-implementation of PyNEST in the Cython language, a superset of Python that additionally supports the declaration of C/C++ types for variables and class attributes, and provides a convenient foreign function interface (FFI) for invoking C/C++ routines (Behnel et al., 2011). Code generation via Cython allows the production of smaller and more maintainable bindings, including increased compatibility with all supported Python releases without additional burden for NEST developers. Furthermore, this novel approach opens up the possibility to support alternative implementations of the Python language at no cost given a functional Cython back-end for the corresponding implementation, and also enables cross-compilation of Python bindings for embedded systems and supercomputers alike.