torch.tx.TensorExprResult
export type TensorExprResult<
Strings extends readonly string[],
Tensors extends readonly TensorOrNumber[],
> = ShapeCheckedResult<
InferExpressionShape<Strings, Tensors>,
Tensor<InferExpressionShape<Strings, Tensors>, InferDType<Tensors>, InferDevice<Tensors>>
>;Stringsextends readonly string[]Tensorsextends readonly TensorOrNumber[]Compute the full result tensor type for a tensor expression. Combines shape inference with dtype and device inference.