activation.py 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#   Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

__all__ = []

17 18
from paddle import _C_ops, in_dynamic_mode

19

20
def relu(x, name=None):
21
    """
22
    sparse relu activation, requiring x to be a sparse coo or sparse csr tensor.
23 24 25

    .. math::

26
        out = max(x, 0)
27 28

    Parameters:
29
        x (Tensor): The input Sparse Tensor with data type float32, float64.
30 31 32
        name (str, optional): Name for the operation (optional, default is None).
            For more information, please refer to :ref:`api_guide_Name`.

33 34
    Returns:
        A Sparse Tensor with the same data type and shape as ``x`` .
35 36 37 38 39 40

    Examples:
        .. code-block:: python

            import paddle
            from paddle.fluid.framework import _test_eager_guard
41

42
            with _test_eager_guard():
43 44 45
                dense_x = paddle.to_tensor([-2, 0, 1], dtype='float32')
                sparse_x = dense_x.to_sparse_coo(1)
                out = paddle.incubate.sparse.nn.functional.relu(sparse_x) 
46 47
    """

48
    assert in_dynamic_mode(), "Currently, Sparse API only support dynamic mode"
49

50 51 52 53 54 55
    if x.is_sparse_coo() or x.is_sparse_csr():
        return _C_ops.final_state_sparse_relu(x)
    else:
        raise ValueError(
            "Currently, sparse.relu only support the input of SparseCooTensor or SparseCsrTensor"
        )