mindspore.mint.randint_like
===========================

.. image:: https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/master/resource/_static/logo_source.svg
    :target: https://gitee.com/mindspore/mindspore/blob/master/docs/api/api_python/mint/mindspore.mint.func_randint_like.rst
    :alt: 查看源文件


.. py:function:: mindspore.mint.randint_like(input, low=0, high, *, dtype=None)

    返回一个Tensor,其元素为 [ `low` , `high` ) 区间的随机整数,根据 `input` 决定shape和dtype。

    .. warning::
        这是一个实验性API,后续可能修改或删除。

    参数:
        - **input** (Tensor) - 输入的Tensor,用来决定输出Tensor的shape和默认的dtype。
        - **low** (int,可选) - 随机区间的起始值。默认值: ``0`` 。
        - **high** (int) - 随机区间的结束值。

    关键字参数:
        - **dtype** (:class:`mindspore.dtype`,可选) - 指定的Tensor dtype。如果是 ``None`` ,将会使用 `input` 的dtype。默认值: ``None`` 。

    返回:
        Tensor,shape和dtype被输入指定,其元素为 [ `low` , `high` ) 区间的随机整数。

    异常:
        - **TypeError** - 如果 `low` 或 `high` 不是整数。