@@ -89,7 +89,7 @@ Remember to align the itemized text with the first line of an item within a list
89
89
Scopes are introduced by {func}` jax.experimental.jax2tf.convert ` ,
90
90
{func}` jax.experimental.export.symbolic_shape ` , {func}` jax.experimental.export.symbolic_args_specs ` .
91
91
The scope of a symbolic expression ` e ` can be read with ` e.scope ` and passed in
92
- to the above functions to direct them to construct sybolic expressions in
92
+ to the above functions to direct them to construct symbolic expressions in
93
93
a given scope.
94
94
See https://github.com/google/jax/blob/main/jax/experimental/jax2tf/README.md#user-specified-symbolic-constraints .
95
95
* simplified and faster equality comparisons, where we consider two symbolic dimensions
@@ -220,7 +220,7 @@ Remember to align the itemized text with the first line of an item within a list
220
220
that cannot be converted to a JAX array is deprecated and now raises a
221
221
{obj}` DeprecationWaning ` . Currently the functions return False, in the future this
222
222
will raise an exception.
223
- * The ` device() ` method of JAX arrays deprecated. Depending on the context, it may
223
+ * The ` device() ` method of JAX arrays is deprecated. Depending on the context, it may
224
224
be replaced with one of the following:
225
225
- {meth}` jax.Array.devices ` returns the set of all devices used by the array.
226
226
- {attr}` jax.Array.sharding ` gives the sharding configuration used by the array.
@@ -311,7 +311,7 @@ Remember to align the itemized text with the first line of an item within a list
311
311
## jax 0.4.17 (Oct 3, 2023)
312
312
313
313
* New features
314
- * Added new {func}` jax.numpy.bitwise_count ` function, matching the API of the simlar
314
+ * Added new {func}` jax.numpy.bitwise_count ` function, matching the API of the similar
315
315
function recently added to NumPy.
316
316
* Deprecations
317
317
* Removed the deprecated module ` jax.abstract_arrays ` and all its contents.
@@ -738,8 +738,8 @@ Changes:
738
738
custom pytree node. This includes:
739
739
* ` tree_flatten_with_path ` that flattens a tree and return not only each leaf but
740
740
also their key paths.
741
- * ` tree_map_with_paths ` that can map a function that takes the key path as argument.
742
- * `register_pytree_with_keys`` to register how the key path and leaves should looks
741
+ * ` tree_map_with_path ` that can map a function that takes the key path as an argument.
742
+ * ` register_pytree_with_keys ` to register how the key path and leaves should looks
743
743
like in a custom pytree node.
744
744
* ` keystr ` that pretty-prints a key path.
745
745
@@ -802,7 +802,7 @@ Changes:
802
802
* Breaking Changes
803
803
* the ` initial ` argument to reduction functions like :func:` jax.numpy.sum `
804
804
is now required to be a scalar, consistent with the corresponding NumPy API.
805
- The previous behavior of broadcating the output against non-scalar ` initial `
805
+ The previous behavior of broadcasting the output against non-scalar ` initial `
806
806
values was an unintentional implementation detail ({jax-issue}` #14446 ` ).
807
807
808
808
## jaxlib 0.4.4 (Feb 16, 2023)
@@ -1014,7 +1014,7 @@ Changes:
1014
1014
changes to how ` isinstance ` works for {class}` jax.numpy.ndarray ` for jax-internal
1015
1015
objects, as {class}` jax.numpy.ndarray ` is now a simple alias of {class}` jax.Array ` .
1016
1016
* Breaking changes
1017
- * ` jax._src ` is no longer imported into the from the public ` jax ` namespace.
1017
+ * ` jax._src ` is no longer imported into the public ` jax ` namespace.
1018
1018
This may break users that were using JAX internals.
1019
1019
* ` jax.soft_pmap ` has been deleted. Please use ` pjit ` or ` xmap ` instead.
1020
1020
` jax.soft_pmap ` is undocumented. If it were documented, a deprecation period
@@ -1233,7 +1233,7 @@ Changes:
1233
1233
` format_shape_dtype_string ` , ` rand_uniform ` , ` skip_on_devices ` , ` with_config ` , ` xla_bridge ` , and
1234
1234
` _default_tolerance ` ({jax-issue}` #10389 ` ). These, along with previously-deprecated ` JaxTestCase ` ,
1235
1235
` JaxTestLoader ` , and ` BufferDonationTestCase ` , will be removed in a future JAX release.
1236
- Most of these utilites can be replaced by calls to standard python & numpy testing utilities found
1236
+ Most of these utilities can be replaced by calls to standard python & numpy testing utilities found
1237
1237
in e.g. {mod}` unittest ` , {mod}` absl.testing ` , {mod}` numpy.testing ` , etc. JAX-specific functionality
1238
1238
such as device checking can be replaced through the use of public APIs such as {func}` jax.devices ` .
1239
1239
Many of the deprecated utilities will still exist in {mod}` jax._src.test_util ` , but these are not
@@ -1437,7 +1437,7 @@ Changes:
1437
1437
1438
1438
* Bug fixes:
1439
1439
* Out- of- bounds indices to `jax.ops.segment_sum` will now be handled with
1440
- `FILL_OR_DROP ` semantics, as documented. This primarily afects the
1440
+ `FILL_OR_DROP ` semantics, as documented. This primarily affects the
1441
1441
reverse- mode derivative, where gradients corresponding to out- of- bounds
1442
1442
indices will now be returned as 0 . (# 8634).
1443
1443
* jax2tf will force the converted code to use XLA for the code fragments
@@ -1879,7 +1879,7 @@ Changes:
1879
1879
1880
1880
# # jaxlib 0.1.61 (February 12 2021)
1881
1881
1882
- # # jaxlib 0.1.60 (Febuary 3 2021)
1882
+ # # jaxlib 0.1.60 (February 3 2021)
1883
1883
1884
1884
* Bug fixes:
1885
1885
* Fixed a memory leak when converting CPU DeviceArrays to NumPy arrays. The
@@ -1933,7 +1933,7 @@ Changes:
1933
1933
* `host_callback.outfeed_receiver` has been removed (it is not necessary,
1934
1934
and was deprecated a few months ago).
1935
1935
* New features:
1936
- * New flag for debugging `inf` , analagous to that for `NaN` ({jax- issue}`# 5224`).
1936
+ * New flag for debugging `inf` , analogous to that for `NaN` ({jax- issue}`# 5224`).
1937
1937
1938
1938
# # jax 0.2.7 (Dec 4 2020)
1939
1939
@@ -2172,7 +2172,7 @@ Changes:
2172
2172
* Adds preliminary support for on- device heap profiling.
2173
2173
* Implements `np.nextafter` for `bfloat16` types.
2174
2174
* Complex128 support for FFTs on CPU and GPU .
2175
- * Bugfixes :
2175
+ * Bug fixes :
2176
2176
* Improved float64 `tanh` accuracy on GPU .
2177
2177
* float64 scatters on GPU are much faster.
2178
2178
* Complex matrix multiplication on CPU should be much faster.
0 commit comments