torch.ReductionOpNames
export type ReductionOpNames = {
[K in OpName]: OpSchemas[K] extends ReductionOpSchema ? K : never;
}[OpName];Filter operation names to only reduction operations.
export type ReductionOpNames = {
[K in OpName]: OpSchemas[K] extends ReductionOpSchema ? K : never;
}[OpName];Filter operation names to only reduction operations.