API symbolsautograd
Copy
tensorplay.autograd.graph.saved_tensors_hooks
- tensorplay.autograd.graph.saved_tensors_hooks(pack_hook, unpack_hook)
Context manager that installs a (pack, unpack) pair for every tensor saved via
Function()’ssave_for_backwardwhile active.pack_hook(tensor)runs once per saved tensor at save time and may return any object (e.g. a CPU copy, a key into external storage).unpack_hook(packed)runs whenctx.saved_tensorsreads it back and must return an equivalenttensorplay.Tensor.
If either hook raises, the exception is surfaced from the corresponding operation.
Help improve this page
Found an error, an unclear step, or a missing example?
Was this page helpful?

