blksprs 1.8__tar.gz → 1.8.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {blksprs-1.8 → blksprs-1.8.1}/PKG-INFO +1 -1
  2. {blksprs-1.8 → blksprs-1.8.1}/blksprs/__init__.py +1 -1
  3. {blksprs-1.8 → blksprs-1.8.1}/blksprs.egg-info/PKG-INFO +1 -1
  4. {blksprs-1.8 → blksprs-1.8.1}/pyproject.toml +1 -1
  5. {blksprs-1.8 → blksprs-1.8.1}/README.md +0 -0
  6. {blksprs-1.8 → blksprs-1.8.1}/blksprs/experimental/distribution_mdi.py +0 -0
  7. {blksprs-1.8 → blksprs-1.8.1}/blksprs/layouting/distribution_layout.py +0 -0
  8. {blksprs-1.8 → blksprs-1.8.1}/blksprs/layouting/sparsity_layout.py +0 -0
  9. {blksprs-1.8 → blksprs-1.8.1}/blksprs/misc/broadcast_ops.py +0 -0
  10. {blksprs-1.8 → blksprs-1.8.1}/blksprs/misc/exp.py +0 -0
  11. {blksprs-1.8 → blksprs-1.8.1}/blksprs/misc/partitioning.py +0 -0
  12. {blksprs-1.8 → blksprs-1.8.1}/blksprs/misc/row_wise.py +0 -0
  13. {blksprs-1.8 → blksprs-1.8.1}/blksprs/ops/conversion.py +0 -0
  14. {blksprs-1.8 → blksprs-1.8.1}/blksprs/ops/distribution.py +0 -0
  15. {blksprs-1.8 → blksprs-1.8.1}/blksprs/ops/matmul.py +0 -0
  16. {blksprs-1.8 → blksprs-1.8.1}/blksprs/ops/repeat.py +0 -0
  17. {blksprs-1.8 → blksprs-1.8.1}/blksprs/ops/softmax.py +0 -0
  18. {blksprs-1.8 → blksprs-1.8.1}/blksprs/ops/transpose.py +0 -0
  19. {blksprs-1.8 → blksprs-1.8.1}/blksprs/utils/benchmarking.py +0 -0
  20. {blksprs-1.8 → blksprs-1.8.1}/blksprs/utils/tools.py +0 -0
  21. {blksprs-1.8 → blksprs-1.8.1}/blksprs/utils/validation.py +0 -0
  22. {blksprs-1.8 → blksprs-1.8.1}/blksprs.egg-info/SOURCES.txt +0 -0
  23. {blksprs-1.8 → blksprs-1.8.1}/blksprs.egg-info/dependency_links.txt +0 -0
  24. {blksprs-1.8 → blksprs-1.8.1}/blksprs.egg-info/requires.txt +0 -0
  25. {blksprs-1.8 → blksprs-1.8.1}/blksprs.egg-info/top_level.txt +0 -0
  26. {blksprs-1.8 → blksprs-1.8.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: blksprs
3
- Version: 1.8
3
+ Version: 1.8.1
4
4
  Summary: A lightweight library for operations on blocksparse matrices in PyTorch.
5
5
  Author-email: Felix Schön <schoen@kr.tuwien.ac.at>
6
6
  Project-URL: Homepage, https://github.com/FelixSchoen/blksprs
@@ -10,7 +10,7 @@ from blksprs.misc.partitioning import split, merge
10
10
  class layout:
11
11
  from blksprs.layouting.distribution_layout import build_distribution_layout
12
12
  from blksprs.layouting.sparsity_layout import build_sparsity_layout, build_sparsity_layout_adaption, \
13
- build_sparsity_layout_matmul
13
+ build_sparsity_layout_matmul, build_sparsity_layout_matmul_fast
14
14
 
15
15
 
16
16
  class misc:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: blksprs
3
- Version: 1.8
3
+ Version: 1.8.1
4
4
  Summary: A lightweight library for operations on blocksparse matrices in PyTorch.
5
5
  Author-email: Felix Schön <schoen@kr.tuwien.ac.at>
6
6
  Project-URL: Homepage, https://github.com/FelixSchoen/blksprs
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "blksprs"
3
- version = "1.8"
3
+ version = "1.8.1"
4
4
  authors = [{ name = "Felix Schön", email = "schoen@kr.tuwien.ac.at" }]
5
5
  description = "A lightweight library for operations on blocksparse matrices in PyTorch."
6
6
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes