Skip to content

Commit e3d9d9d

Browse files
author
jax authors
committed
Merge pull request #20189 from rajasekharporeddy:rajasekharporeddy-patch-1
PiperOrigin-RevId: 615057844
2 parents ae1cfc2 + e94299c commit e3d9d9d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Remember to align the itemized text with the first line of an item within a list
8989
Scopes are introduced by {func}`jax.experimental.jax2tf.convert`,
9090
{func}`jax.experimental.export.symbolic_shape`, {func}`jax.experimental.export.symbolic_args_specs`.
9191
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
9393
a given scope.
9494
See https://github.com/google/jax/blob/main/jax/experimental/jax2tf/README.md#user-specified-symbolic-constraints.
9595
* 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
220220
that cannot be converted to a JAX array is deprecated and now raises a
221221
{obj}`DeprecationWaning`. Currently the functions return False, in the future this
222222
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
224224
be replaced with one of the following:
225225
- {meth}`jax.Array.devices` returns the set of all devices used by the array.
226226
- {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
311311
## jax 0.4.17 (Oct 3, 2023)
312312

313313
* 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
315315
function recently added to NumPy.
316316
* Deprecations
317317
* Removed the deprecated module `jax.abstract_arrays` and all its contents.
@@ -738,8 +738,8 @@ Changes:
738738
custom pytree node. This includes:
739739
* `tree_flatten_with_path` that flattens a tree and return not only each leaf but
740740
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
743743
like in a custom pytree node.
744744
* `keystr` that pretty-prints a key path.
745745

@@ -802,7 +802,7 @@ Changes:
802802
* Breaking Changes
803803
* the `initial` argument to reduction functions like :func:`jax.numpy.sum`
804804
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`
806806
values was an unintentional implementation detail ({jax-issue}`#14446`).
807807

808808
## jaxlib 0.4.4 (Feb 16, 2023)
@@ -1014,7 +1014,7 @@ Changes:
10141014
changes to how `isinstance` works for {class}`jax.numpy.ndarray` for jax-internal
10151015
objects, as {class}`jax.numpy.ndarray` is now a simple alias of {class}`jax.Array`.
10161016
* 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.
10181018
This may break users that were using JAX internals.
10191019
* `jax.soft_pmap` has been deleted. Please use `pjit` or `xmap` instead.
10201020
`jax.soft_pmap` is undocumented. If it were documented, a deprecation period
@@ -1233,7 +1233,7 @@ Changes:
12331233
`format_shape_dtype_string`, `rand_uniform`, `skip_on_devices`, `with_config`, `xla_bridge`, and
12341234
`_default_tolerance` ({jax-issue}`#10389`). These, along with previously-deprecated `JaxTestCase`,
12351235
`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
12371237
in e.g. {mod}`unittest`, {mod}`absl.testing`, {mod}`numpy.testing`, etc. JAX-specific functionality
12381238
such as device checking can be replaced through the use of public APIs such as {func}`jax.devices`.
12391239
Many of the deprecated utilities will still exist in {mod}`jax._src.test_util`, but these are not
@@ -1437,7 +1437,7 @@ Changes:
14371437

14381438
* Bug fixes:
14391439
* 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
14411441
reverse-mode derivative, where gradients corresponding to out-of-bounds
14421442
indices will now be returned as 0. (#8634).
14431443
* jax2tf will force the converted code to use XLA for the code fragments
@@ -1879,7 +1879,7 @@ Changes:
18791879

18801880
## jaxlib 0.1.61 (February 12 2021)
18811881

1882-
## jaxlib 0.1.60 (Febuary 3 2021)
1882+
## jaxlib 0.1.60 (February 3 2021)
18831883

18841884
* Bug fixes:
18851885
* Fixed a memory leak when converting CPU DeviceArrays to NumPy arrays. The
@@ -1933,7 +1933,7 @@ Changes:
19331933
* `host_callback.outfeed_receiver` has been removed (it is not necessary,
19341934
and was deprecated a few months ago).
19351935
* 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`).
19371937

19381938
## jax 0.2.7 (Dec 4 2020)
19391939

@@ -2172,7 +2172,7 @@ Changes:
21722172
* Adds preliminary support for on-device heap profiling.
21732173
* Implements `np.nextafter` for `bfloat16` types.
21742174
* Complex128 support for FFTs on CPU and GPU.
2175-
* Bugfixes:
2175+
* Bug fixes:
21762176
* Improved float64 `tanh` accuracy on GPU.
21772177
* float64 scatters on GPU are much faster.
21782178
* Complex matrix multiplication on CPU should be much faster.

0 commit comments

Comments
 (0)