View source on GitHub |
High performance evolution under a channel evolution.
cirq.apply_channel(
val: Any,
args: cirq.ApplyChannelArgs
,
default: Union[np.ndarray, TDefault] = RaiseTypeErrorIfNotProvided
) -> Union[np.ndarray, TDefault]
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 val
s 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.
Args | |
---|---|
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.
|
Returns | |
---|---|
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 If the receiving object wrote its output over 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. |