Functional._call¶
-
Functional.
_call
(self, x, out=None, \*\*kwargs)¶ Implementation of the operator evaluation.
This method is the private backend for the evaluation of an operator. It needs to match certain signature conventions, and its implementation type is inferred from its signature.
The following signatures are allowed:
- Python 2 and 3:
_call(self, x)
–> out-of-place evaluation_call(self, vec, out)
–> in-place evaluation_call(self, x, out=None)
–> both
- Python 3 only:
_call(self, x, *, out=None)
(out
as keyword-only argument) –> both
For disambiguation, the instance name (the first argument) must be ‘self’.
The name of the
out
argument must be ‘out’, the second argument may have any name.Additional variable
**kwargs
and keyword-only arguments (Python 3 only) are also allowed.- Parameters
- x
domain
element-like
Element to which the operator is applied
- out
range
element, optional Element to which the result is written
- x
- Returns
- out
range
element-like
Result of the evaluation. If
out
was provided, the returned object is a reference to it.
- out
Notes
Some general advice on how to implement operator evaluation:
If you just write a quick implementation or are not too worried about efficiency, it may be easiest to write the evaluation out-of-place.
We recommend advanced and performance-aware users to implement the in-place pattern if the wrapped code supports it. In-place evaluation is usually significantly faster since it avoids the allocation of new memory and a copy compared to out-of-place evaluation.
If there is a significant performance gain from implementing an out-of-place method separately, use the pattern for both (
out
optional) and decide according to the givenout
parameter which one to use.If your evaluation code does not support in-place evaluation, use the out-of-place pattern.
Note that the public call pattern
op()
usingop.__call__
provides a default implementation of the underlying in-place or out-of-place call even if you choose the respective other pattern.See the operator guide for more info on in-place vs. out-of-place evaluation.