mindspore.ops.GatherNd
======================

.. py:class:: mindspore.ops.GatherNd()

    .. code-block::

        prim = ops.GatherNd()
        out = prim(input_x, indices)

    等价于

    .. code-block::

        ops.gather_nd(input_x, indices)

    更多详情请查看: :func:`mindspore.ops.gather_nd` 。