https://github.com/zgana/sparse
(abandoned) python sparse matrix module with faster construction but slower arithmetic than scipy.sparse
https://github.com/zgana/sparse
Last synced: 12 months ago
JSON representation
(abandoned) python sparse matrix module with faster construction but slower arithmetic than scipy.sparse
- Host: GitHub
- URL: https://github.com/zgana/sparse
- Owner: zgana
- Created: 2019-09-02T14:11:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-02T14:23:07.000Z (almost 7 years ago)
- Last Synced: 2025-05-18T14:43:33.797Z (about 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sparse
This is an abandoned python sparse matrix module with faster construction but
slower arithmetic than scipy.sparse. Basically, I profiled some code and found
that sparse matrix construction was a bottleneck. So I tried writing my own.
Then I profiled my code again, and sparse matrix construction was no longer a
bottleneck. Instead, sparse matrix dot products was the bottleneck.
So, lol, so much for that.
This is just uploaded in case I ever want to revisit it, either to make it
actually good, or just to remind myself why it isn't good.
## license
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.