Skip to content

Commit

Permalink
CUDA accelerated ASSET (NeuralEnsemble#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
dizcza committed Jan 29, 2021
1 parent 4a72095 commit 1e5e33c
Show file tree
Hide file tree
Showing 8 changed files with 803 additions and 239 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ nosetests.xml
venv/
env/
.pytest_cache/
**/*/__pycache__

# Compiled source #
###################
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/asset.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Analysis of Sequences of Synchronous EvenTs (ASSET)
===================================================

.. automodule:: elephant.asset
.. automodule:: elephant.asset.asset


References
Expand Down
5 changes: 5 additions & 0 deletions elephant/asset/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
try:
from .asset import *
except ImportError:
# requirements-extras are missing
pass

0 comments on commit 1e5e33c

Please sign in to comment.