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
-**table**: strided binary reduction function dispatch table. Must have the following properties:
57
+
-**table**: strided reduction function dispatch table. Must have the following properties:
58
58
59
-
-**default**: default strided binary reduction function which should be invoked when provided ndarrays have data types which do not have a corresponding specialized implementation.
59
+
-**default**: default strided reduction function which should be invoked when provided ndarrays have data types which do not have a corresponding specialized implementation.
60
60
61
61
A dispatch table may have the following additional properties:
62
62
63
-
-**types**: one-dimensional list of ndarray data types describing specialized input ndarray argument signatures. Only the input ndarray argument data types should be specified. Output ndarray and additional input ndarray argument data types should be omitted and are not considered during dispatch. The length of `types` must equal twice the number of strided functions specified by `fcns` (i.e., for every pair of input ndarray data types, there must be a corresponding strided binary reduction function in `fcns`).
64
-
-**fcns**: list of strided binary reduction functions which are specific to specialized input ndarray argument signatures.
63
+
-**types**: one-dimensional list of ndarray data types describing specialized input ndarray argument signatures. Only the input ndarray argument data types should be specified. Output ndarray and additional input ndarray argument data types should be omitted and are not considered during dispatch. The length of `types` must be twice the number of strided functions specified by `fcns` (i.e., for every pair of input ndarray data types, there must be a corresponding strided reduction function in `fcns`).
64
+
-**fcns**: list of strided reduction functions which are specific to specialized input ndarray argument signatures.
65
65
66
66
-**idtypes**: list containing lists of supported input data types for each input ndarray argument.
67
67
@@ -74,7 +74,7 @@ The constructor has the following parameters:
0 commit comments