pihnn.utils.derivative#
- pihnn.utils.derivative(f, z, holom=False, conjugate=False)#
Compute the derivative
through PyTorch automatic differentiation. The method requires that ‘f’ is obtained from ‘z’ and that ‘z.requires_grad’ was set to True. If ‘z’ is complex-valued, the Wirtinger derivative is computed instead: .- Parameters:
f – Function to derivatate.
z – Variable against which to derive.
holom (bool) – If True, the complex derivative is computed by assuming ‘f’ to be holomorphic (leading to faster calculation). Meaningful only if ‘z’ is complex.
conjugate – If True, the second Wirtinger derivative
is computed instead. Meaningful only if ‘z’ is complex.
- Returns:
derivative (
torch.tensor
) - Derivative of ‘f’ with respect to ‘z’.