jax.tree_util
module#
Utilities for working with tree-like container data structures.
This module provides a small set of utility functions for working with tree-like data structures, such as nested tuples, lists, and dicts. We call these structures pytrees. They are trees in that they are defined recursively (any non-pytree is a pytree, i.e. a leaf, and any pytree of pytrees is a pytree) and can be operated on recursively (object identity equivalence is not preserved by mapping operations, and the structures cannot contain reference cycles).
The set of Python types that are considered pytree nodes (e.g. that can be mapped over, rather than treated as leaves) is extensible. There is a single module-level registry of types, and class hierarchy is ignored. By registering a new pytree node type, that type in effect becomes transparent to the utility functions in this file.
The primary purpose of this module is to enable the interoperability between user defined data structures and JAX transformations (e.g. jit). This is not meant to be a general purpose tree-like data structure handling library.
See the JAX pytrees note for examples.
List of Functions#
|
A version of functools.partial that works in pytrees. |
|
Tests whether all elements in the given iterable are all leaves. |
|
Build a treedef from a nested iterable structure |
|
Extends the set of types that are considered internal nodes in pytrees. |
|
Extends the set of types that are considered internal nodes in pytrees. |
Extends the set of types that are considered internal nodes in pytrees. |
|
|
Extends the set of types that are considered internal nodes in pytrees. |
Extends the set of types that are considered internal nodes in pytrees. |
|
|
Registers cls as a pytree with no leaves. |
|
Alias of |
|
Alias of |
|
Alias of |
|
Return a list of treedefs for immediate children |
|
Return True if the treedef represents a leaf. |
|
Makes a tuple treedef from an iterable of child treedefs. |
Type variable. |
|
alias of |
|
|
Helper to pretty-print a tuple of keys. |
Legacy APIs#
These APIs are now accessed via jax.tree
.
|
Alias of |
|
Alias of |
|
Alias of |
|
Alias of |
|
Alias of |
|
Alias of |
|
Alias of |
|
Alias of |