Type Alias AllOperationTypes
AllOperationTypes:
| "create"
| "neg"
| "abs"
| "sin"
| "cos"
| "exp"
| "log"
| "sqrt"
| "square"
| "add"
| "sub"
| "mul"
| "div"
| "reshape"
| "view"
| "slice"
| "flatten"
| "permute"
| "matmul"
| "transpose"
| "softmax"
| "log_softmax"
| "sum"
| "mean"
| "max"
| "min"
| "rearrange"
Union of all supported tensor operation types
This exhaustive list ensures that device implementations must handle all operations. Adding a new operation here will cause TypeScript errors in device implementations until they add support.