https://github.com/google/jax
Raw File
Tip revision: 290c90d37a0e112022c75f190cb518aa54b13110 authored by Matthew Johnson on 30 April 2022, 02:58:16 UTC
Trivial change for backward compatibility stub.
Tip revision: 290c90d
jax.ops.rst

jax.ops package
===============

.. currentmodule:: jax.ops

.. automodule:: jax.ops

.. _syntactic-sugar-for-ops:

The functions ``jax.ops.index_update``, ``jax.ops.index_add``, etc., which were
deprecated in JAX 0.2.22, have been removed. Please use the
:attr:`jax.numpy.ndarray.at` property on JAX arrays instead.

Segment reduction operators
---------------------------

.. autosummary::
  :toctree: _autosummary

    segment_max
    segment_min
    segment_prod
    segment_sum
back to top