cuquantum.einsum_path

cuquantum.einsum_path(subscripts, *operands, optimize=True)

A drop-in replacement of numpy.einsum_path() for evaluating the “best” contraction order using cuTensorNet.

Only a subset of the NumPy options is supported using this interface. The contract_path() function provides an extensive set of options specific to cuTensorNet and is recommended over this function.

Explicit as well as implicit form is supported for the Einstein summation expression. In addition to the subscript format, the “interleaved” format is also supported as a means of specifying the operands and their modes. See Network for more detail on the types of operands as well as for examples.

Parameters
  • subscripts – The modes (subscripts) for summation as a comma-separated list of characters. Unicode characters are allowed in the expression thereby expanding the size of the tensor network that can be specified using the Einstein summation convention.

  • operands – A sequence of tensors (ndarray-like objects). The currently supported types are numpy.ndarray, cupy.ndarray, and torch.Tensor.

  • optimize – This parameter specifies options for path optimization. The only value allowed with this interface is True.

Returns

A 2-tuple (path, opt_info):

  • path : A sequence of pairs of operand indices representing the best contraction order in the numpy.einsum_path() format.

  • opt_info : An object of type OptimizerInfo containing information about the best contraction order.

Return type

tuple