From b7b1ae865e10acdc8220bd3374809f229d71a806 Mon Sep 17 00:00:00 2001 From: furnace <34057289+windstamp@users.noreply.github.com> Date: Tue, 29 Sep 2020 11:06:22 +0800 Subject: [PATCH] update mv op docs (#27559) --- python/paddle/tensor/linalg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/paddle/tensor/linalg.py b/python/paddle/tensor/linalg.py index 15580b6618..f00d4bfd6c 100644 --- a/python/paddle/tensor/linalg.py +++ b/python/paddle/tensor/linalg.py @@ -922,9 +922,9 @@ def mv(x, vec, name=None): Performs a matrix-vector product of the matrix x and the vector vec. Args: - x (Variable): A tensor with shape :math:`[M, N]` , The data type of the input Tensor x + x (Tensor): A tensor with shape :math:`[M, N]` , The data type of the input Tensor x should be one of float32, float64. - vec (Variable): A tensor with shape :math:`[N]` , The data type of the input Tensor x + vec (Tensor): A tensor with shape :math:`[N]` , The data type of the input Tensor x should be one of float32, float64. name(str, optional): The default value is None. Normally there is no need for user to set this property. For more information, please refer to :ref:`api_guide_Name`. -- GitLab