Diff Ops¤
The zodiax.diffops module provides wrapper around the jax Jacobian/Hessian utilities designed to reduce the overall RAM requirements for calculations.
zodiax.diffops
¤
hessian(f, x, nbatches=1, jit=True, checkpoint=False)
¤
A batched version of jax.hessian that computes the Hessian in column blocks
to reduce peak memory. Increase nbatches to reduce block size. Set
checkpoint=True to trade extra computation for further memory savings.
f(x) must return a scalar.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f
|
callable
|
The scalar-valued function to differentiate twice. Must accept a pytree
of the same structure as |
required |
x
|
PyTree
|
The point at which to evaluate the Hessian. |
required |
nbatches
|
int = 1
|
Number of column blocks. Higher values use less memory. |
1
|
jit
|
bool = True
|
Whether to JIT-compile the inner function. |
True
|
checkpoint
|
bool = False
|
Whether to apply |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
H |
Array
|
The Hessian of |
unflatten |
callable
|
Function that maps a flat vector of length |
Source code in zodiax/diffops.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | |
hessian_to_pytree(H, x)
¤
Converts a flat (n, n) Hessian (computed w.r.t. ravel_pytree(x)) into a
pytree-of-pytrees matching the structure of x. Assumes H was computed with
the same x structure and leaf shapes, and that flattening was performed via
ravel_pytree(x).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
H
|
Array
|
The flat |
required |
x
|
PyTree
|
The pytree whose structure defines the block partition of |
required |
Returns:
| Name | Type | Description |
|---|---|---|
H_tree |
PyTree
|
A pytree-of-pytrees with the same structure as |
Source code in zodiax/diffops.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | |
jacobian(f, x, nbatches=1, jit=True, checkpoint=False)
¤
A batched version of jax.jacobian that computes the Jacobian in column blocks
to reduce peak memory. Increase nbatches to reduce block size. Set
checkpoint=True to trade extra computation for further memory savings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
f
|
callable
|
The function to differentiate. Must accept a pytree of the same structure
as |
required |
x
|
PyTree
|
The point at which to evaluate the Jacobian. |
required |
nbatches
|
int = 1
|
Number of column blocks. Higher values use less memory. |
1
|
jit
|
bool = True
|
Whether to JIT-compile the inner function. |
True
|
checkpoint
|
bool = False
|
Whether to apply |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
J |
Array
|
The Jacobian of |
unflatten |
callable
|
Function that maps a flat vector of length |
Source code in zodiax/diffops.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | |