torch.autograd.JVPOptions
export interface JVPOptions {
/** If true, both outputs and JVP will be differentiable. @default false */
create_graph?: boolean;
/** If true, error is raised if output is independent of input. @default false */
strict?: boolean;
}create_graph(boolean)optional- – If true, both outputs and JVP will be differentiable. @default false
strict(boolean)optional- – If true, error is raised if output is independent of input. @default false
Options for jvp.