ops.py 21.1 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
9 10 11 12 13
# 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.
14 15

from __future__ import print_function
P
peizhilin 已提交
16
import os
17
from .layer_function_generator import generate_layer_fn, generate_activation_fn, generate_inplace_fn, add_sample_code
C
chengduo 已提交
18
from .. import core
H
hong 已提交
19
from ..framework import convert_np_dtype_to_dtype_, Variable, in_dygraph_mode
20
from ..data_feeder import convert_dtype, check_variable_and_dtype, check_type, check_dtype
21
from paddle.utils import deprecated
H
hong 已提交
22
from paddle import _C_ops
23
import paddle
Y
Yang Yu 已提交
24

25 26 27 28
__deprecated_func_name__ = {
    'tanh_shrink': 'tanhshrink',
    'logsigmoid': 'log_sigmoid'
}
29

30
__activations_noattr__ = [
31
    'sigmoid',
M
minghaoBD 已提交
32
    'silu',
33
    'logsigmoid',
34 35 36
    'tanh_shrink',
    'softplus',
    'softsign',
W
WangXi 已提交
37
    'tanh',
38 39 40
]

__unary_func__ = [
41 42 43
    'exp', 'expm1', 'atan', 'sqrt', 'rsqrt', 'abs', 'ceil', 'floor', 'cos',
    'tan', 'acos', 'sin', 'sinh', 'asin', 'cosh', 'round', 'reciprocal',
    'square', 'acosh', 'asinh', 'atanh', 'lgamma'
Y
Yu Yang 已提交
44 45
]

46 47 48 49 50 51 52 53 54 55
__inplace_unary_func__ = [
    'exp_',
    'sqrt_',
    'rsqrt_',
    'ceil_',
    'floor_',
    'round_',
    'reciprocal_',
]

X
Xin Pan 已提交
56
__all__ = []
Y
Yang Yu 已提交
57

Y
Yu Yang 已提交
58
for _OP in set(__all__):
59
    globals()[_OP] = generate_layer_fn(_OP)
Y
yuyang18 已提交
60

S
sneaxiy 已提交
61 62 63 64 65
# It is a hot fix in some unittest using:
#   fluid.layers.scale(x=x, scale=10.0, out=out_var)
# e.g.: test_program_code.py, test_dist_train.py
globals()['_scale'] = generate_layer_fn('scale')

S
sneaxiy 已提交
66 67
globals()['_elementwise_div'] = generate_layer_fn('elementwise_div')

68
__all__ += __activations_noattr__
69
__all__ += __unary_func__
70
__all__ += __inplace_unary_func__
71 72

for _OP in set(__activations_noattr__):
73 74 75
    _new_OP = _OP
    if _OP in __deprecated_func_name__:
        _new_OP = __deprecated_func_name__[_OP]
76
    _func = generate_activation_fn(_OP)
77 78
    _func = deprecated(since="2.0.0",
                       update_to="paddle.nn.functional.%s" % (_new_OP))(_func)
79
    globals()[_OP] = _func
80 81

for _OP in set(__unary_func__):
82 83 84
    _new_OP = _OP
    if _OP in __deprecated_func_name__:
        _new_OP = __deprecated_func_name__[_OP]
85 86 87
    _func = generate_activation_fn(_OP)
    _func = deprecated(since="2.0.0", update_to="paddle.%s" % (_new_OP))(_func)
    globals()[_OP] = _func
88

89 90 91 92
for _OP in set(__inplace_unary_func__):
    _new_OP = _OP
    if _OP in __deprecated_func_name__:
        _new_OP = __deprecated_func_name__[_OP]
93 94 95
    _func = generate_inplace_fn(_OP)
    _func = deprecated(since="2.0.0", update_to="paddle.%s" % (_new_OP))(_func)
    globals()[_OP] = _func
96

97 98
add_sample_code(
    globals()["sigmoid"], r"""
99 100 101 102 103 104
Examples:
    .. code-block:: python

        import paddle
        import paddle.nn.functional as F

105
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
106
        out = F.sigmoid(x)
N
Noel 已提交
107
        print(out)
108 109 110 111
        # [0.40131234 0.450166   0.52497919 0.57444252]

""")

112 113
add_sample_code(
    globals()["silu"], r"""
M
minghaoBD 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126
Examples:
    .. code-block:: python

        import paddle
        import paddle.nn.functional as F

        x = paddle.to_tensor([1.0, 2.0, 3.0, 4.0])
        out = F.silu(x)
        print(out)
        # [ 0.7310586 1.7615942 2.8577224, 3.9280552 ]

""")

127 128
add_sample_code(
    globals()["logsigmoid"], r"""
129 130 131 132 133 134
Examples:
    .. code-block:: python

        import paddle
        import paddle.nn.functional as F

135
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
136
        out = F.log_sigmoid(x)
N
Noel 已提交
137
        print(out)
138 139 140 141
        # [-0.91301525 -0.79813887 -0.64439666 -0.55435524]

""")

142 143
add_sample_code(
    globals()["exp"], r"""
144 145 146 147 148
Examples:
    .. code-block:: python

        import paddle

149
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
150
        out = paddle.exp(x)
N
Noel 已提交
151
        print(out)
152 153 154 155
        # [0.67032005 0.81873075 1.10517092 1.34985881]

""")

156 157
add_sample_code(
    globals()["expm1"], r"""
R
ronnywang 已提交
158 159 160 161 162 163 164 165 166 167 168 169
Examples:
    .. code-block:: python

        import paddle

        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
        out = paddle.expm1(x)
        print(out)
        # [-0.32967997, -0.18126924,  0.10517092,  0.34985882]

""")

170 171
add_sample_code(
    globals()["tanh"], r"""
172 173 174 175 176
Examples:
    .. code-block:: python

        import paddle

177
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
178
        out = paddle.tanh(x)
N
Noel 已提交
179
        print(out)
180 181 182 183
        # [-0.37994896 -0.19737532  0.09966799  0.29131261]

""")

184 185
add_sample_code(
    globals()["atan"], r"""
186 187 188 189 190
Examples:
    .. code-block:: python

        import paddle

191
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
192
        out = paddle.atan(x)
N
Noel 已提交
193
        print(out)
194 195 196 197
        # [-0.38050638 -0.19739556  0.09966865  0.29145679]

""")

198 199
add_sample_code(
    globals()["tanh_shrink"], r"""
200 201 202 203 204
Examples:
    .. code-block:: python

        import paddle
        import paddle.nn.functional as F
205

206
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
207 208 209
        out = F.tanhshrink(x) 
        print(out)
        # [-0.020051, -0.00262468, 0.000332005, 0.00868739]
210 211 212

""")

213 214
add_sample_code(
    globals()["sqrt"], r"""
215 216 217 218 219
Examples:
    .. code-block:: python

        import paddle

220
        x = paddle.to_tensor([0.1, 0.2, 0.3, 0.4])
221
        out = paddle.sqrt(x)
N
Noel 已提交
222
        print(out)
223 224 225 226
        # [0.31622777 0.4472136  0.54772256 0.63245553]

""")

227 228
add_sample_code(
    globals()["rsqrt"], r"""
229 230 231 232 233
Examples:
    .. code-block:: python

        import paddle

234
        x = paddle.to_tensor([0.1, 0.2, 0.3, 0.4])
235
        out = paddle.rsqrt(x)
236
        print(out)
237 238 239 240
        # [3.16227766 2.23606798 1.82574186 1.58113883]

""")

241 242
add_sample_code(
    globals()["abs"], r"""
243 244 245 246 247
Examples:
    .. code-block:: python

        import paddle

248
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
249
        out = paddle.abs(x)
N
Noel 已提交
250
        print(out)
251 252 253 254
        # [0.4 0.2 0.1 0.3]

""")

255 256
add_sample_code(
    globals()["ceil"], r"""
257 258 259 260 261
Examples:
    .. code-block:: python

        import paddle

262
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
263
        out = paddle.ceil(x)
N
Noel 已提交
264
        print(out)
265 266 267 268
        # [-0. -0.  1.  1.]

""")

269 270
add_sample_code(
    globals()["floor"], r"""
271 272 273 274 275
Examples:
    .. code-block:: python

        import paddle

276
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
277
        out = paddle.floor(x)
N
Noel 已提交
278
        print(out)
279 280 281 282
        # [-1. -1.  0.  0.]

""")

283 284
add_sample_code(
    globals()["cos"], r"""
285 286 287 288 289
Examples:
    .. code-block:: python

        import paddle

290
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
291
        out = paddle.cos(x)
N
Noel 已提交
292
        print(out)
293 294 295 296
        # [0.92106099 0.98006658 0.99500417 0.95533649]

""")

297 298
add_sample_code(
    globals()["tan"], r"""
J
joejiong 已提交
299 300 301 302 303 304 305 306 307 308 309 310
Examples:
    .. code-block:: python

        import paddle

        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
        out = paddle.tan(x)
        print(out)
        # [-0.42279324, -0.20271005, 0.10033467, 0.30933627]

""")

311 312
add_sample_code(
    globals()["acos"], r"""
313 314 315 316 317
Examples:
    .. code-block:: python

        import paddle

318
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
319
        out = paddle.acos(x)
N
Noel 已提交
320
        print(out)
321 322 323 324
        # [1.98231317 1.77215425 1.47062891 1.26610367]

""")

325 326
add_sample_code(
    globals()["sin"], r"""
327 328 329 330 331
Examples:
    .. code-block:: python

        import paddle

332
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
333
        out = paddle.sin(x)
N
Noel 已提交
334
        print(out)
335 336 337 338
        # [-0.38941834 -0.19866933  0.09983342  0.29552021]

""")

339 340
add_sample_code(
    globals()["asin"], r"""
341 342 343 344 345
Examples:
    .. code-block:: python

        import paddle

346
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
347
        out = paddle.asin(x)
N
Noel 已提交
348
        print(out)
349 350 351 352
        # [-0.41151685 -0.20135792  0.10016742  0.30469265]

""")

353 354
add_sample_code(
    globals()["cosh"], r"""
355 356 357 358 359
Examples:
    .. code-block:: python

        import paddle

360
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
361
        out = paddle.cosh(x)
N
Noel 已提交
362
        print(out)
363 364 365 366
        # [1.08107237 1.02006676 1.00500417 1.04533851]

""")

367 368
add_sample_code(
    globals()["sinh"], r"""
369 370 371 372 373
Examples:
    .. code-block:: python

        import paddle

374
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
375
        out = paddle.sinh(x)
N
Noel 已提交
376
        print(out)
377 378 379 380
        # [-0.41075233 -0.201336    0.10016675  0.30452029]

""")

381 382
add_sample_code(
    globals()["asinh"], r"""
X
xiaoting 已提交
383 384 385 386 387 388 389 390 391 392 393 394
Examples:
    .. code-block:: python

        import paddle

        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
        out = paddle.asinh(x)
        print(out)
        # [-0.39003533, -0.19869010,  0.09983408,  0.29567307]

""")

395 396
add_sample_code(
    globals()["acosh"], r"""
X
xiaoting 已提交
397 398 399 400 401 402 403 404 405 406 407 408
Examples:
    .. code-block:: python

        import paddle

        x = paddle.to_tensor([1., 3., 4., 5.])
        out = paddle.acosh(x)
        print(out)
        # [0.        , 1.76274729, 2.06343699, 2.29243159]

""")

409 410
add_sample_code(
    globals()["atanh"], r"""
X
xiaoting 已提交
411 412 413 414 415 416 417 418 419 420 421 422
Examples:
    .. code-block:: python

        import paddle

        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
        out = paddle.atanh(x)
        print(out)
        # [-0.42364895, -0.20273256,  0.10033535,  0.30951962]

""")

423 424
add_sample_code(
    globals()["round"], r"""
425 426 427 428 429
Examples:
    .. code-block:: python

        import paddle

430
        x = paddle.to_tensor([-0.5, -0.2, 0.6, 1.5])
431
        out = paddle.round(x)
N
Noel 已提交
432
        print(out)
433 434 435 436
        # [-1. -0.  1.  2.]

""")

437 438
add_sample_code(
    globals()["reciprocal"], r"""
439 440 441 442 443
Examples:
    .. code-block:: python

        import paddle

444
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
445
        out = paddle.reciprocal(x)
N
Noel 已提交
446
        print(out)
447 448 449 450
        # [-2.5        -5.         10.          3.33333333]

""")

451 452
add_sample_code(
    globals()["square"], r"""
453 454 455 456 457
Examples:
    .. code-block:: python

        import paddle

458
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
459
        out = paddle.square(x)
N
Noel 已提交
460
        print(out)
461 462 463 464
        # [0.16 0.04 0.01 0.09]

""")

465 466
add_sample_code(
    globals()["softplus"], r"""
467 468 469 470 471
Examples:
    .. code-block:: python

        import paddle
        import paddle.nn.functional as F
472

473
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
474 475 476
        out = F.softplus(x) 
        print(out)
        # [0.513015, 0.598139, 0.744397, 0.854355]
477 478 479

""")

480 481
add_sample_code(
    globals()["softsign"], r"""
482 483 484 485 486
Examples:
    .. code-block:: python

        import paddle
        import paddle.nn.functional as F
487

488
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
489 490 491
        out = F.softsign(x) 
        print(out)
        # [-0.285714, -0.166667, 0.0909091, 0.230769]
492 493 494

""")

495 496 497 498 499 500
__all__ += ['softshrink']

_softshrink_ = generate_layer_fn('softshrink')


def softshrink(x, alpha=None):
501 502 503
    check_variable_and_dtype(x, 'x', ['float16', 'float32', 'float64'],
                             'softshrink')

504 505 506 507 508 509 510 511 512 513 514
    locals_var = locals().copy()
    kwargs = dict()
    for name, val in locals_var.items():
        if val is not None:
            if name == 'alpha':
                kwargs['lambda'] = val
            else:
                kwargs[name] = val
    return _softshrink_(**kwargs)


515
softshrink.__doc__ = r"""
516 517 518
	:alias_main: paddle.nn.functional.softshrink
	:alias: paddle.nn.functional.softshrink,paddle.nn.functional.activation.softshrink
	:old_api: paddle.fluid.layers.softshrink
S
swtkiwi 已提交
519

520 521 522
:strong:`Softshrink Activation Operator`

..  math::
523 524 525 526 527
    out = \\begin{cases}
            x - \\alpha, \\text{if } x > \\alpha \\\\
            x + \\alpha, \\text{if } x < -\\alpha \\\\
            0,  \\text{otherwise}
          \\end{cases}
528 529 530


Args:
531 532
    x: Input of Softshrink operator, an N-D Tensor, with data type float32, float64 or float16.
    alpha (float): non-negative offset
533 534
    
Returns:
535
    Output of Softshrink operator with the same type of input.
536 537 538 539 540

Examples:
    .. code-block:: python
    
        import paddle.fluid as fluid
541
        data = fluid.data(name="input", shape=[None, 784])
542 543 544
        result = fluid.layers.softshrink(x=data, alpha=0.3)
"""

Y
yuyang18 已提交
545 546 547 548 549
__all__ += ['hard_shrink']

_hard_shrink_ = generate_layer_fn('hard_shrink')


550
@deprecated(since="2.0.0", update_to="paddle.nn.functional.hardshrink")
Y
yuyang18 已提交
551
def hard_shrink(x, threshold=None):
552 553 554
    check_variable_and_dtype(x, 'x', ['float16', 'float32', 'float64'],
                             'hard_shrink')

555
    locals_var = locals().copy()
Y
yuyang18 已提交
556
    kwargs = dict()
557
    for name, val in locals_var.items():
Y
yuyang18 已提交
558 559 560 561 562
        if val is not None:
            kwargs[name] = val
    return _hard_shrink_(**kwargs)


Y
yuyang18 已提交
563
hard_shrink.__doc__ = _hard_shrink_.__doc__ + """
Y
yuyang18 已提交
564 565
Examples:

566
    >>> import paddle.fluid as fluid
Y
yuyang18 已提交
567 568 569
    >>> data = fluid.layers.data(name="input", shape=[784])
    >>> result = fluid.layers.hard_shrink(x=data, threshold=0.3)
"""
Y
yuyang18 已提交
570

W
wopeizl 已提交
571 572 573 574 575
__all__ += ['cumsum']

_cum_sum_ = generate_layer_fn('cumsum')


576 577 578
@deprecated(since="2.0.0",
            update_to="paddle.cumsum",
            reason="New APIs for Paddle 2.0 are coming.")
W
wopeizl 已提交
579
def cumsum(x, axis=None, exclusive=None, reverse=None):
580
    check_type(x, 'x', (Variable), 'cumsum')
581
    locals_var = locals().copy()
W
wopeizl 已提交
582
    kwargs = dict()
583
    for name, val in locals_var.items():
W
wopeizl 已提交
584 585 586 587 588
        if val is not None:
            kwargs[name] = val
    return _cum_sum_(**kwargs)


L
liu zhengxi 已提交
589
cumsum.__doc__ = """
590 591 592
	:alias_main: paddle.cumsum
	:alias: paddle.cumsum,paddle.tensor.cumsum,paddle.tensor.math.cumsum
	:old_api: paddle.fluid.layers.cumsum
S
swtkiwi 已提交
593

L
liu zhengxi 已提交
594
The cumulative sum of the elements along a given axis. By default, the first element of the result is the same of the first element of the input. If exlusive is true, the first element of the result is 0.
W
wopeizl 已提交
595

L
liu zhengxi 已提交
596 597
Args:
    x (Variable): Input of cumsum operator, the Tensor/LoDTensor needed to be cumsumed. 
T
tianshuo78520a 已提交
598
    axis (int, optional): The dimension to accumulate along. -1 means the last dimension. Default is -1.
L
liu zhengxi 已提交
599 600 601 602 603 604 605 606 607 608 609 610
    exclusive (bool, optional): Whether to perform exclusive cumsum. Default is False.
    reverse (bool, optional): If true, the cumsum is performed in the reversed direction. Default is False.

Returns:
    Variable(Tensor/LoDTensor): The result of cumsum operator, output of cumsum operator. 

Examples:
    .. code-block:: python
        
        import paddle.fluid as fluid
        data = fluid.layers.data(name="input", shape=[32, 784])
        result = fluid.layers.cumsum(data, axis=0)
W
wopeizl 已提交
611
"""
Y
yuyang18 已提交
612 613 614 615 616 617 618

__all__ += ['thresholded_relu']

_thresholded_relu_ = generate_layer_fn('thresholded_relu')


def thresholded_relu(x, threshold=None):
619 620 621
    check_variable_and_dtype(x, 'x', ['float16', 'float32', 'float64'],
                             'thresholded_relu')

622
    locals_var = locals().copy()
Y
yuyang18 已提交
623
    kwargs = dict()
624
    for name, val in locals_var.items():
Y
yuyang18 已提交
625 626 627
        if val is not None:
            kwargs[name] = val

C
chengduo 已提交
628
    return _thresholded_relu_(**kwargs)
Y
yuyang18 已提交
629 630


631
thresholded_relu.__doc__ = r"""
632 633 634
	:alias_main: paddle.nn.functional.thresholded_relu
	:alias: paddle.nn.functional.thresholded_relu,paddle.nn.functional.activation.thresholded_relu
	:old_api: paddle.fluid.layers.thresholded_relu
S
swtkiwi 已提交
635

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
:strong:`Thresholded ReLU Activation Operator`

Equation:
    ..  math::
        out = \\begin{cases}
            x, &if x > threshold \\\\
            0, &otherwise
            \\end{cases}

Args:
    x(Variable): The input of Thresholded ReLU op, Tensor or LoDTensor, dtype: float32 or float64.
        
    threshold(float, optional): The threshold value. Note that if the arg `threshold` is not set, the threshold in the equation is 1.0.

Returns:

    Variable: The output of Thresholded ReLU op, Tensor or LoDTensor, dtype: float32 or float64, the same as the input, shape: the same as the input.

Y
yuyang18 已提交
654
Examples:
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
    
    .. code-block:: python
    
        # declarative mode
        import numpy as np
        from paddle import fluid
        
        x = fluid.data(name="x", shape=(-1, 3), dtype="float32")
        y = fluid.layers.thresholded_relu(x, threshold=0.1)
        
        place = fluid.CPUPlace()
        exe = fluid.Executor(place)
        start = fluid.default_startup_program()
        main = fluid.default_main_program()
        
        data = np.random.randn(2, 3).astype("float32")
        exe.run(start)
        
        y_np, = exe.run(main, feed={"x": data}, fetch_list=[y])
        
        data
        # array([[ 0.21134382, -1.1805999 ,  0.32876605],
        #        [-1.2210793 , -0.7365624 ,  1.0013918 ]], dtype=float32)
        y_np
        # array([[ 0.21134382, -0.        ,  0.32876605],
        #        [-0.        , -0.        ,  1.0013918 ]], dtype=float32)
Y
yuyang18 已提交
681

682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
    .. code-block:: python
    
        # imperative mode
        import numpy as np
        from paddle import fluid
        import paddle.fluid.dygraph as dg
        
        data = np.random.randn(2, 3).astype("float32")
        place = fluid.CPUPlace()
        with dg.guard(place) as g:
            x = dg.to_variable(data)
            y = fluid.layers.thresholded_relu(x, threshold=0.1)
            y_np = y.numpy()
        data
        # array([[ 0.21134382, -1.1805999 ,  0.32876605],
        #        [-1.2210793 , -0.7365624 ,  1.0013918 ]], dtype=float32)
        y_np
        # array([[ 0.21134382, -0.        ,  0.32876605],
        #        [-0.        , -0.        ,  1.0013918 ]], dtype=float32)
Y
yuyang18 已提交
701
"""
F
Feiyu Chan 已提交
702 703 704 705 706 707

__all__ += ['gelu']

_gelu_ = generate_layer_fn('gelu')


708
@deprecated(since="2.0.0", update_to="paddle.nn.functional.gelu")
709
def gelu(x, approximate=False):
F
Feiyu Chan 已提交
710 711 712 713 714 715 716 717
    locals_var = locals().copy()
    kwargs = dict()
    for name, val in locals_var.items():
        if val is not None:
            kwargs[name] = val
    return _gelu_(**kwargs)


718
gelu.__doc__ = r"""
F
Feiyu Chan 已提交
719 720 721 722
:strong:`GeLU Activation Operator`
For more details, see [Gaussian Error Linear Units](https://arxiv.org/abs/1606.08415).

Equation:
723 724 725 726 727
    if approximate is True
    ..  math::
        out = 0.5 * x * (1 + tanh(\\sqrt{\\frac{2}{\\pi}} * (x + 0.044715x^{3})))

    else
F
Feiyu Chan 已提交
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
    ..  math::
        out = 0.5 * x * (1 + erf(\\frac{x}{\\sqrt{2}}))

Args:

    x(Variable): The input of GeLU op, Tensor or LoDTensor, dtype: float32 or float64.

Returns:

    Variable: The output of GeLU op, Tensor or LoDTensor, dtype: float32 or float64, the same as the input, shape: the same as the input.

Examples:
    
    .. code-block:: python
    
        # declarative mode
        import numpy as np
        from paddle import fluid
        
        x = fluid.data(name="x", shape=(-1, 3), dtype="float32")
        y = fluid.layers.gelu(x)
        
        place = fluid.CPUPlace()
        exe = fluid.Executor(place)
        start = fluid.default_startup_program()
        main = fluid.default_main_program()
        
        data = np.random.randn(2, 3).astype("float32")
        exe.run(start)
        
        y_np, = exe.run(main, feed={"x": data}, fetch_list=[y])
        
        data
        # array([[ 0.87165993, -1.0541513 , -0.37214822],
        #         [ 0.15647964,  0.32496083,  0.33045998]], dtype=float32)
        y_np
        # array([[ 0.70456535, -0.15380788, -0.13207214],
        #        [ 0.08796856,  0.20387867,  0.2080159 ]], dtype=float32)

    .. code-block:: python
    
        # imperative mode
        import numpy as np
        from paddle import fluid
        import paddle.fluid.dygraph as dg
        
        data = np.random.randn(2, 3).astype("float32")
        place = fluid.CPUPlace()
        with dg.guard(place) as g:
            x = dg.to_variable(data)
            y = fluid.layers.gelu(x)
            y_np = y.numpy()
        data
        # array([[ 0.87165993, -1.0541513 , -0.37214822],
        #        [ 0.15647964,  0.32496083,  0.33045998]], dtype=float32)
        y_np
        # array([[ 0.70456535, -0.15380788, -0.13207214],
        #        [ 0.08796856,  0.20387867,  0.2080159 ]], dtype=float32)
"""
F
Feiyu Chan 已提交
787 788 789 790 791 792

__all__ += ['erf']

_erf_ = generate_layer_fn('erf')


W
WuHaobo 已提交
793
def erf(x, name=None):
H
hong 已提交
794 795 796
    if in_dygraph_mode():
        return _C_ops.final_state_erf(x)

F
Feiyu Chan 已提交
797 798 799 800 801 802 803 804
    locals_var = locals().copy()
    kwargs = dict()
    for name, val in locals_var.items():
        if val is not None:
            kwargs[name] = val
    return _erf_(**kwargs)


805
erf.__doc__ = r"""
F
Feiyu Chan 已提交
806 807 808 809 810 811 812 813 814
:strong:`Erf Operator`
For more details, see [Error function](https://en.wikipedia.org/wiki/Error_function).

Equation:
    ..  math::
        out = \\frac{2}{\\sqrt{\\pi}} \\int_{0}^{x}e^{- \\eta^{2}}d\\eta

Args:

W
WuHaobo 已提交
815
    x (Tensor): The input tensor, it's data type should be float32, float64.
F
Feiyu Chan 已提交
816 817 818

Returns:

W
WuHaobo 已提交
819
    Tensor: The output of Erf op, dtype: float32 or float64, the same as the input, shape: the same as the input.
F
Feiyu Chan 已提交
820 821 822 823 824

Examples:
    
    .. code-block:: python
    
W
WuHaobo 已提交
825
        import paddle
826
        x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
W
WuHaobo 已提交
827
        out = paddle.erf(x)
N
Noel 已提交
828
        print(out)
W
WuHaobo 已提交
829
        # [-0.42839236 -0.22270259  0.11246292  0.32862676]
F
Feiyu Chan 已提交
830
"""
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858


def lgamma(x, name=None):
    r"""
    Calculates the lgamma of the given input tensor, element-wise.

    This operator performs elementwise lgamma for input $X$.
    :math:`out = log\Gamma(x)`


    Args:
        x (Tensor): Input Tensor. Must be one of the following types: float32, float64.
        name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.

    Returns:
        Tensor, the lgamma of the input Tensor, the shape and data type is the same with input.

    Examples:
        .. code-block:: python

            import paddle

            x = paddle.to_tensor([-0.4, -0.2, 0.1, 0.3])
            out = paddle.lgamma(x)
            print(out)
            # [1.31452441, 1.76149750, 2.25271273, 1.09579802]
    """
    return paddle.Tensor.lgamma(x)