You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spec/draft/tutorial_basic.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
# Array API Tutorial
4
4
5
-
In this tutorial we're going to show the migration from the array consumer
5
+
In this tutorial, we're going to demonstrate how to migrate to the Array API from the array consumer's
6
6
point of view for a simple graph algorithm.
7
7
8
-
The example presented here comes from [`graphblas-algorithms`](https://github.com/python-graphblas/graphblas-algorithms).
9
-
library. There we can find[the HITS algorithm](https://github.com/python-graphblas/graphblas-algorithms/blob/35dbc90e808c6bf51b63d51d8a63f59238c02975/graphblas_algorithms/algorithms/link_analysis/hits_alg.py#L9),
10
-
used for the link analysis for estimating prominence in sparse networks.
8
+
The example presented here comes from the [`graphblas-algorithms`](https://github.com/python-graphblas/graphblas-algorithms).
9
+
library. In particular, we'll be migrating[the HITS algorithm](https://github.com/python-graphblas/graphblas-algorithms/blob/35dbc90e808c6bf51b63d51d8a63f59238c02975/graphblas_algorithms/algorithms/link_analysis/hits_alg.py#L9), which is
10
+
used for the link analysis for estimating prominence in sparse networks, to be Array API compliant.
11
11
12
12
The inlined and slightly simplified (without "authority" feature)
0 commit comments