Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update short summary for nx docs #78

Merged
merged 2 commits into from
Oct 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions _nx_graphblas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ def get_info():
"project": "graphblas-algorithms",
"package": "graphblas_algorithms",
"url": "https://github.com/python-graphblas/graphblas-algorithms",
"short_summary": "Fast, OpenMP-enabled backend using GraphBLAS",
"short_summary": "OpenMP-enabled sparse linear algebra backend.",
# "description": "TODO",
"functions": {
"adjacency_matrix": {},
"all_pairs_bellman_ford_path_length": {
"extra_parameters": {
"chunksize": "Split the computation into chunks; "
"chunksize : int or str, optional": "Split the computation into chunks; "
'may specify size as string or number of rows. Default "10 MiB"',
},
},
"all_pairs_shortest_path_length": {
"extra_parameters": {
"chunksize": "Split the computation into chunks; "
"chunksize : int or str, optional": "Split the computation into chunks; "
'may specify size as string or number of rows. Default "10 MiB"',
},
},
Expand Down Expand Up @@ -93,7 +93,7 @@ def get_info():
"s_metric": {},
"square_clustering": {
"extra_parameters": {
"chunksize": "Split the computation into chunks; "
"chunksize : int or str, optional": "Split the computation into chunks; "
'may specify size as string or number of rows. Default "256 MiB"',
},
},
Expand Down
Loading