File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def __init__(self):
75
75
self ._capabilities = {
76
76
"boolean indexing" : True ,
77
77
"data-dependent shapes" : True ,
78
- "max dimensions" : 64 ,
78
+ "max dimensions" : None ,
79
79
}
80
80
self ._all_dtypes = {
81
81
"bool" : dpt .bool ,
@@ -108,7 +108,7 @@ def capabilities(self):
108
108
Value: ``True``
109
109
``max dimensions``:
110
110
integer indication the maximum array dimension supported by ``dpctl``.
111
- Value: ``64 ``
111
+ Value: ``None ``
112
112
113
113
Returns:
114
114
dict:
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ def test_array_api_inspection_capabilities():
74
74
capabilities = dpt .__array_namespace_info__ ().capabilities ()
75
75
assert capabilities ["boolean indexing" ]
76
76
assert capabilities ["data-dependent shapes" ]
77
- assert capabilities ["max dimensions" ] == 64
77
+ assert capabilities ["max dimensions" ] is None
78
78
79
79
80
80
def test_array_api_inspection_default_dtypes ():
You can’t perform that action at this time.
0 commit comments