AllenInstitute / bmtk

Brain Modeling Toolkit
https://alleninstitute.github.io/bmtk/
BSD 3-Clause "New" or "Revised" License
265 stars 86 forks source link

Made use of numba optional to prevent conflicts with NEST simulator #341

Closed kaeldai closed 9 months ago

kaeldai commented 9 months ago

Having numba installed by default was causing issues with the unit-tests and running the examples using NEST. For some reason that I haven't been able to figure out, importing numba causes the NEST library to seg-fault (at-least with the conda-forge build of 3.0-3.3).

Decided to make using numba in FilterNet optional, and if not installed will default back to the old dot-product implementation.