blksprs 1.2__tar.gz → 1.2.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.
- {blksprs-1.2 → blksprs-1.2.1}/PKG-INFO +5 -2
- {blksprs-1.2 → blksprs-1.2.1}/README.md +3 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs.egg-info/PKG-INFO +5 -2
- {blksprs-1.2 → blksprs-1.2.1}/pyproject.toml +2 -2
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/layouting/distribution_layout.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/layouting/sparsity_layout.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/misc/broadcast_addition.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/ops/conversion.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/ops/distribution.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/ops/exp.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/ops/matmul.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/ops/row_wise_sum.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/ops/softmax.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/ops/transpose.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/utils/benchmarking.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/utils/tools.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs/utils/validation.py +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs.egg-info/SOURCES.txt +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs.egg-info/dependency_links.txt +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs.egg-info/requires.txt +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/blksprs.egg-info/top_level.txt +0 -0
- {blksprs-1.2 → blksprs-1.2.1}/setup.cfg +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: blksprs
|
|
3
|
-
Version: 1.2
|
|
3
|
+
Version: 1.2.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
|
|
7
7
|
Project-URL: Bugtracker, https://github.com/FelixSchoen/blksprs/issues
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
Requires-Dist: torch
|
|
11
11
|
Provides-Extra: test
|
|
@@ -21,6 +21,9 @@ Requires-Dist: pdoc3; extra == "deploy"
|
|
|
21
21
|
|
|
22
22
|
# blksprs
|
|
23
23
|
|
|
24
|
+
[](https://github.com/FelixSchoen/blksprs/releases)
|
|
25
|
+
[](https://www.python.org/downloads/release/python-3119/)
|
|
26
|
+
|
|
24
27
|
## Overview
|
|
25
28
|
|
|
26
29
|
A lightweight and efficient library for operations on block-sparse matrices in PyTorch using Triton.
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# blksprs
|
|
2
2
|
|
|
3
|
+
[](https://github.com/FelixSchoen/blksprs/releases)
|
|
4
|
+
[](https://www.python.org/downloads/release/python-3119/)
|
|
5
|
+
|
|
3
6
|
## Overview
|
|
4
7
|
|
|
5
8
|
A lightweight and efficient library for operations on block-sparse matrices in PyTorch using Triton.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: blksprs
|
|
3
|
-
Version: 1.2
|
|
3
|
+
Version: 1.2.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
|
|
7
7
|
Project-URL: Bugtracker, https://github.com/FelixSchoen/blksprs/issues
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
Requires-Dist: torch
|
|
11
11
|
Provides-Extra: test
|
|
@@ -21,6 +21,9 @@ Requires-Dist: pdoc3; extra == "deploy"
|
|
|
21
21
|
|
|
22
22
|
# blksprs
|
|
23
23
|
|
|
24
|
+
[](https://github.com/FelixSchoen/blksprs/releases)
|
|
25
|
+
[](https://www.python.org/downloads/release/python-3119/)
|
|
26
|
+
|
|
24
27
|
## Overview
|
|
25
28
|
|
|
26
29
|
A lightweight and efficient library for operations on block-sparse matrices in PyTorch using Triton.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "blksprs"
|
|
3
|
-
version = "1.2"
|
|
3
|
+
version = "1.2.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"
|
|
7
|
-
requires-python = ">=3.
|
|
7
|
+
requires-python = ">=3.11"
|
|
8
8
|
license = { file = "LICENSE.md" }
|
|
9
9
|
dependencies = [
|
|
10
10
|
"torch"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|