summaryrefslogtreecommitdiff
path: root/examples/performance.py
AgeCommit message (Collapse)Author
2016-03-09updated examples to use new unified interfaceMario Mulansky
removed all occasions of *multi functions from examples as they are considered deprecated now. Uses unified interface everywhere.
2015-12-14py3: xrange() -> range()Igor Gnatenko
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
2015-07-07add disable_backend_warning propertyMario Mulansky
Users can now disable the warning messages produced when the cython backend is not available by writing spk.disable_backend_warning = True in the beginning
2015-05-08introduce backend for distance functionMario Mulansky
isi- and spike distances over complete intervals are now computed without obtaining the profile first. This gives more than x2 performance improvements.
2015-05-08performance improvement for multivar spike syncMario Mulansky
dont compute the average profile in the function spike_sync_multi, but rather compute the overall average distance directly
2015-05-07performance improvementsMario Mulansky
use recursive approach to compute average profile for average multivariate distances, dont compute average multivariate profile, but average distances directly.