Batching¤
The zodiax.batching module provides wrapper around the jax Jacobian/Hessian utilities designed to reduce the overall RAM requirements for calculations.
zodiax.batching
¤
hessian(f, x, nbatches=1, jit=True, checkpoint=False)
¤
A batched version of jax.hessian designed to save memory by computing the Hessian in column blocks. Increase nbatches to reduce block size. If memory is still an issue, set checkpoint=True to checkpoint f and save memory at the cost of extra computation.
f(x) must return a scalar.
Returns the Hessian H (n, n) in flattened coordinates and the unflatten function.
Source code in zodiax/batching.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 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 | |
hessian_to_pytree(H, x)
¤
Convert a flat (n, n) Hessian (w.r.t. ravel_pytree(x)) into a pytree-of-pytrees.
This assumes: - H was computed with the same x structure and leaf shapes - flattening was via ravel_pytree(x) (i.e. JAX pytree leaf order)
Returns: H_tree: pytree where H_tree has x's structure twice, and each block has shape leaf_i.shape + leaf_j.shape
Source code in zodiax/batching.py
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 | |
jacobian(f, x, nbatches=1, jit=True, checkpoint=False)
¤
A batched version of jax.jacobian designed to save memory by computing the Jacobian in column blocks. To lower memory usage, increase the number of batches (nbatches), which reduces the block size. If memory is still an issue, set checkpoint=True to checkpoint the function and save memory at the cost of extra computation.
Return the Jacobian J and the unflatten function to map flat vectors back to x's structure.
Source code in zodiax/batching.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 | |