torch.ValidateOperandCount
export type ValidateOperandCount<E extends string, Count extends number> =
OperandCount<E> extends Count
? true
: einsum_error_operand_count_mismatch<OperandCount<E>, Count>;Eextends stringCountextends numberValidate that the number of operands matches the equation.