Tutorials
Advanced JAX Tutorials
Notes
Developer documentation
API documentation
jit
vmap
pmap
Warning
This page was created from a pull request.
jax.lax.
full
Returns an array of shape filled with fill_value.
shape (Sequence[int]) β sequence of integers, describing the shape of the output array.
Sequence
int
fill_value (Any) β the value to fill the new array with.
Any
dtype (Optional[Any]) β the type of the output array, or None. If not None, fill_value will be cast to dtype.
Optional