Skip to content

Commit

Permalink
Add GCXS (#258)
Browse files Browse the repository at this point in the history
Adds GCXS, a generalisation of CSR/CSC.
  • Loading branch information
daletovar authored and hameerabbasi committed Aug 10, 2019
1 parent 939f3ff commit 8a80598
Show file tree
Hide file tree
Showing 9 changed files with 857 additions and 21 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
numpy>=1.13
numpy<=1.16
scipy>=0.19
numba>=0.39
3 changes: 2 additions & 1 deletion sparse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .coo import *
from .compressed import GXCS
from .dok import DOK
from .sparse_array import SparseArray
from .utils import random
Expand All @@ -13,4 +14,4 @@
_AUTO_DENSIFICATION_ENABLED = bool(int(os.environ.get('SPARSE_AUTO_DENSIFY', '0')))
_AUTO_WARN_ON_TOO_DENSE = bool(int(os.environ.get('SPARSE_WARN_ON_TOO_DENSE', '0')))

del os
del os
1 change: 1 addition & 0 deletions sparse/compressed/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .compressed import GXCS
Loading

0 comments on commit 8a80598

Please sign in to comment.