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
Expose the linalg namespace and include in status page (#581)
* Add matmul, matrix_transpose, tensordot, vecdot to linalg namespace
* Move outer to linalg namespace
* Remove flip from list of unimplemented functions since it was added in #114
* Remove unstack from list of unimplemented functions since it was added in #575
* Add link to cumulative_sum PR
* Add linalg table to status page
Copy file name to clipboardExpand all lines: api_status.md
+33-3Lines changed: 33 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## Array API Coverage Implementation Status
2
2
3
-
Cubed supports version [2022.12](https://data-apis.org/array-api/2022.12/index.html) of the Python array API standard, with a few exceptions noted below. The [linear algebra extensions](https://data-apis.org/array-api/2022.12/extensions/linear_algebra_functions.html) and [Fourier transform functions¶](https://data-apis.org/array-api/2022.12/extensions/fourier_transform_functions.html) are *not* supported.
3
+
Cubed supports version [2022.12](https://data-apis.org/array-api/2022.12/index.html) of the Python array API standard, with a few exceptions noted below. The [Fourier transform functions](https://data-apis.org/array-api/2022.12/extensions/fourier_transform_functions.html) are *not* supported.
4
4
5
5
Support for version [2023.12](https://data-apis.org/array-api/2023.12/index.html) is tracked in Cubed issue [#438](https://github.com/cubed-dev/cubed/issues/438).
6
6
@@ -67,7 +67,7 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
@@ -89,3 +89,33 @@ This table shows which parts of the the [Array API](https://data-apis.org/array-
89
89
||`var`|:x:|| Like `mean`, [#29](https://github.com/cubed-dev/cubed/issues/29)|
90
90
| Utility Functions |`all`|:white_check_mark:|||
91
91
||`any`|:white_check_mark:|||
92
+
93
+
### Linear Algebra Extension
94
+
95
+
A few of the [linear algebra extension](https://data-apis.org/array-api/2022.12/extensions/linear_algebra_functions.html) functions are supported, as indicated in this table.
0 commit comments