cirq.apply_channel

High performance evolution under a channel evolution.

If val defines an _apply_channel_ method, that method will be used to apply val's channel effect to the target tensor. Otherwise, if val defines an _apply_unitary_ method, that method will be used to apply vals channel effect to the target tensor. Otherwise, if val returns a non-default channel with cirq.channel, that channel will be applied using a generic method. If none of these cases apply, an exception is raised or the specified default value is returned.

val The value with a channel to apply to the target.
args A mutable cirq.ApplyChannelArgs object describing the target tensor, available workspace, and left and right axes to operate on. The attributes of this object will be mutated as part of computing the result.
default What should be returned if val doesn't have a channel. If not specified, a TypeError is raised instead of returning a default value.

If the receiving object is not able to apply a channel, the specified default value is returned (or a TypeError is raised). If this occurs, then target_tensor should not have been mutated.

If the receiving object was able to work inline, directly mutating target_tensor it will return target_tensor. The caller is responsible for checking if the result is target_tensor.

If the receiving object wrote its output over out_buffer, the result will be out_buffer. The caller is responsible for checking if the result is out_buffer (and e.g. swapping the buffer for the target tensor before the next call).

Note that it is an error for the return object to be either of the auxiliary buffers, and the method will raise an AssertionError if this contract is violated.

The receiving object may also write its output over a new buffer that it created, in which case that new array is returned.

TypeError val doesn't have a channel and default wasn't specified.
ValueError Different left and right shapes of args.target_tensor selected by left_axes and right_axes or qid_shape(val) doesn't equal the left and right shapes.
AssertionError _apply_channel_ returned an auxiliary buffer.