__init__.py 13.0 KB
Newer Older
1
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved
2 3 4 5 6 7 8 9 10 11 12 13
#
# 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.
14

15 16 17 18 19 20
from .attribute import rank  # noqa: F401
from .attribute import shape  # noqa: F401
from .attribute import real  # noqa: F401
from .attribute import imag  # noqa: F401
from .creation import to_tensor  # noqa: F401
from .creation import diag  # noqa: F401
L
Li Min 已提交
21
from .creation import diagflat  # noqa: F401
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
from .creation import eye  # noqa: F401
from .creation import linspace  # noqa: F401
from .creation import ones  # noqa: F401
from .creation import ones_like  # noqa: F401
from .creation import zeros  # noqa: F401
from .creation import zeros_like  # noqa: F401
from .creation import arange  # noqa: F401
from .creation import full  # noqa: F401
from .creation import full_like  # noqa: F401
from .creation import triu  # noqa: F401
from .creation import tril  # noqa: F401
from .creation import meshgrid  # noqa: F401
from .creation import empty  # noqa: F401
from .creation import empty_like  # noqa: F401
from .linalg import matmul  # noqa: F401
from .linalg import dot  # noqa: F401
from .linalg import norm  # noqa: F401
39
from .linalg import cond  # noqa: F401
40 41 42 43 44 45 46
from .linalg import transpose  # noqa: F401
from .linalg import dist  # noqa: F401
from .linalg import t  # noqa: F401
from .linalg import cross  # noqa: F401
from .linalg import cholesky  # noqa: F401
from .linalg import bmm  # noqa: F401
from .linalg import histogram  # noqa: F401
S
smallv0221 已提交
47
from .linalg import bincount  # noqa: F401
48
from .linalg import mv  # noqa: F401
L
Lijunhui 已提交
49
from .linalg import eig  # noqa: F401
50
from .linalg import matrix_power  # noqa: F401
51
from .linalg import qr  # noqa: F401
52
from .linalg import eigvals  # noqa: F401
53 54
from .linalg import multi_dot  # noqa: F401
from .linalg import svd  # noqa: F401
55
from .linalg import eigvalsh  # noqa: F401
56
from .linalg import eigh  # noqa: F401
A
andyjpaddle 已提交
57
from .linalg import pinv  # noqa: F401
W
Weilong Wu 已提交
58
from .linalg import solve  # noqa: F401
59 60 61 62 63 64 65 66 67 68
from .logic import equal  # noqa: F401
from .logic import greater_equal  # noqa: F401
from .logic import greater_than  # noqa: F401
from .logic import is_empty  # noqa: F401
from .logic import less_equal  # noqa: F401
from .logic import less_than  # noqa: F401
from .logic import logical_and  # noqa: F401
from .logic import logical_not  # noqa: F401
from .logic import logical_or  # noqa: F401
from .logic import logical_xor  # noqa: F401
69 70 71 72
from .logic import bitwise_and  # noqa: F401
from .logic import bitwise_or  # noqa: F401
from .logic import bitwise_xor  # noqa: F401
from .logic import bitwise_not  # noqa: F401
73 74 75 76 77 78 79 80
from .logic import not_equal  # noqa: F401
from .logic import allclose  # noqa: F401
from .logic import equal_all  # noqa: F401
from .logic import is_tensor  # noqa: F401
from .manipulation import cast  # noqa: F401
from .manipulation import concat  # noqa: F401
from .manipulation import expand  # noqa: F401
from .manipulation import broadcast_to  # noqa: F401
81
from .manipulation import broadcast_tensors  # noqa: F401
82 83 84
from .manipulation import expand_as  # noqa: F401
from .manipulation import tile  # noqa: F401
from .manipulation import flatten  # noqa: F401
85
from .manipulation import flatten_  # noqa: F401
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
from .manipulation import gather  # noqa: F401
from .manipulation import gather_nd  # noqa: F401
from .manipulation import reshape  # noqa: F401
from .manipulation import reshape_  # noqa: F401
from .manipulation import flip as reverse  # noqa: F401
from .manipulation import scatter  # noqa: F401
from .manipulation import scatter_  # noqa: F401
from .manipulation import scatter_nd_add  # noqa: F401
from .manipulation import scatter_nd  # noqa: F401
from .manipulation import shard_index  # noqa: F401
from .manipulation import slice  # noqa: F401
from .manipulation import split  # noqa: F401
from .manipulation import squeeze  # noqa: F401
from .manipulation import squeeze_  # noqa: F401
from .manipulation import stack  # noqa: F401
from .manipulation import strided_slice  # noqa: F401
from .manipulation import unique  # noqa: F401
D
duanboqiang 已提交
103
from .manipulation import unique_consecutive  # noqa: F401
104 105 106 107 108 109 110
from .manipulation import unsqueeze  # noqa: F401
from .manipulation import unsqueeze_  # noqa: F401
from .manipulation import unstack  # noqa: F401
from .manipulation import flip  # noqa: F401
from .manipulation import unbind  # noqa: F401
from .manipulation import roll  # noqa: F401
from .manipulation import chunk  # noqa: F401
F
From00 已提交
111
from .manipulation import tensordot  # noqa: F401
112 113 114 115 116
from .math import abs  # noqa: F401
from .math import acos  # noqa: F401
from .math import asin  # noqa: F401
from .math import atan  # noqa: F401
from .math import ceil  # noqa: F401
117
from .math import ceil_  # noqa: F401
118 119 120 121
from .math import cos  # noqa: F401
from .math import tan  # noqa: F401
from .math import cosh  # noqa: F401
from .math import cumsum  # noqa: F401
H
hlygit66666 已提交
122
from .math import cumprod  # noqa: F401
123
from .math import exp  # noqa: F401
124
from .math import exp_  # noqa: F401
R
ronnywang 已提交
125
from .math import expm1  # noqa: F401
126
from .math import floor  # noqa: F401
127
from .math import floor_  # noqa: F401
128 129 130 131 132
from .math import increment  # noqa: F401
from .math import log  # noqa: F401
from .math import multiplex  # noqa: F401
from .math import pow  # noqa: F401
from .math import reciprocal  # noqa: F401
133
from .math import reciprocal_  # noqa: F401
134
from .math import round  # noqa: F401
135
from .math import round_  # noqa: F401
136
from .math import rsqrt  # noqa: F401
137
from .math import rsqrt_  # noqa: F401
138
from .math import scale  # noqa: F401
139
from .math import scale_  # noqa: F401
140 141 142 143
from .math import sign  # noqa: F401
from .math import sin  # noqa: F401
from .math import sinh  # noqa: F401
from .math import sqrt  # noqa: F401
144
from .math import sqrt_  # noqa: F401
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
from .math import square  # noqa: F401
from .math import stanh  # noqa: F401
from .math import sum  # noqa: F401
from .math import tanh  # noqa: F401
from .math import tanh_  # noqa: F401
from .math import add_n  # noqa: F401
from .math import max  # noqa: F401
from .math import maximum  # noqa: F401
from .math import min  # noqa: F401
from .math import minimum  # noqa: F401
from .math import mm  # noqa: F401
from .math import divide  # noqa: F401
from .math import floor_divide  # noqa: F401
from .math import remainder  # noqa: F401
from .math import mod  # noqa: F401
from .math import floor_mod  # noqa: F401
from .math import multiply  # noqa: F401
from .math import add  # noqa: F401
163
from .math import add_  # noqa: F401
164
from .math import subtract  # noqa: F401
165
from .math import subtract_  # noqa: F401
R
ronnywang 已提交
166
from .math import atan2  # noqa: F401
167 168 169 170 171 172 173 174
from .math import logsumexp  # noqa: F401
from .math import inverse  # noqa: F401
from .math import log2  # noqa: F401
from .math import log10  # noqa: F401
from .math import log1p  # noqa: F401
from .math import erf  # noqa: F401
from .math import addmm  # noqa: F401
from .math import clip  # noqa: F401
175
from .math import clip_  # noqa: F401
176 177 178 179 180 181 182 183 184 185
from .math import trace  # noqa: F401
from .math import kron  # noqa: F401
from .math import isfinite  # noqa: F401
from .math import isinf  # noqa: F401
from .math import isnan  # noqa: F401
from .math import prod  # noqa: F401
from .math import all  # noqa: F401
from .math import any  # noqa: F401
from .math import broadcast_shape  # noqa: F401
from .math import conj  # noqa: F401
186
from .math import trunc  # noqa: F401
Z
zyfncg 已提交
187
from .math import digamma  # noqa: F401
188 189
from .math import neg  # noqa: F401
from .math import lgamma  # noqa: F401
190
from .math import diagonal  # noqa: F401
191

192 193 194 195
from .random import multinomial  # noqa: F401
from .random import standard_normal  # noqa: F401
from .random import normal  # noqa: F401
from .random import uniform  # noqa: F401
J
JYChen 已提交
196
from .random import uniform_  # noqa: F401
197 198 199 200 201 202 203
from .random import randn  # noqa: F401
from .random import rand  # noqa: F401
from .random import randint  # noqa: F401
from .random import randperm  # noqa: F401
from .search import argmax  # noqa: F401
from .search import argmin  # noqa: F401
from .search import argsort  # noqa: F401
Y
Yanxing Shi 已提交
204
from .search import searchsorted  # noqa: F401
205 206 207 208 209 210 211 212 213 214 215 216 217
from .search import topk  # noqa: F401
from .search import where  # noqa: F401
from .search import index_select  # noqa: F401
from .search import nonzero  # noqa: F401
from .search import sort  # noqa: F401
from .search import index_sample  # noqa: F401
from .search import masked_select  # noqa: F401
from .stat import mean  # noqa: F401
from .stat import std  # noqa: F401
from .stat import var  # noqa: F401
from .stat import numel  # noqa: F401
from .stat import median  # noqa: F401
from .to_string import set_printoptions  # noqa: F401
218

219 220 221 222
from .array import array_length  # noqa: F401
from .array import array_read  # noqa: F401
from .array import array_write  # noqa: F401
from .array import create_array  # noqa: F401
L
Leo Chen 已提交
223

T
Tongxin Bai 已提交
224 225
from .einsum import einsum  # noqa: F401

226 227 228 229 230
#this list used in math_op_patch.py for _binary_creator_
tensor_method_func  = [ #noqa
           'matmul',
           'dot',
           'norm',
231
           'cond',
232 233 234 235 236 237 238
           'transpose',
           'dist',
           't',
           'cross',
           'cholesky',
           'bmm',
           'histogram',
S
smallv0221 已提交
239
           'bincount',
240
           'mv',
241
           'matrix_power',
242
           'qr',
243
           'eigvals',
244
           'eigvalsh',
245 246 247 248 249 250 251
           'abs',
           'acos',
           'all',
           'any',
           'asin',
           'atan',
           'ceil',
252
           'ceil_',
253 254 255
           'cos',
           'cosh',
           'cumsum',
H
hlygit66666 已提交
256
           'cumprod',
257
           'exp',
258
           'exp_',
259
           'floor',
260
           'floor_',
261 262 263 264 265 266 267 268 269
           'increment',
           'log',
           'log2',
           'log10',
           'logsumexp',
           'multiplex',
           'pow',
           'prod',
           'reciprocal',
270
           'reciprocal_',
271
           'round',
272
           'round_',
273
           'rsqrt',
274
           'rsqrt_',
275
           'scale',
276
           'scale_',
277 278 279 280
           'sign',
           'sin',
           'sinh',
           'sqrt',
281
           'sqrt_',
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
           'square',
           'stanh',
           'sum',
           'tanh',
           'tanh_',
           'add_n',
           'max',
           'maximum',
           'min',
           'minimum',
           'mm',
           'divide',
           'floor_divide',
           'remainder',
           'mod',
           'floor_mod',
           'multiply',
           'add',
300
           'add_',
301
           'subtract',
302
           'subtract_',
303 304 305 306 307 308 309
           'atan',
           'logsumexp',
           'inverse',
           'log1p',
           'erf',
           'addmm',
           'clip',
310
           'clip_',
311 312 313 314 315 316 317
           'trace',
           'kron',
           'isfinite',
           'isinf',
           'isnan',
           'broadcast_shape',
           'conj',
318 319
           'neg',
           'lgamma',
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
           'equal',
           'equal_all',
           'greater_equal',
           'greater_than',
           'is_empty',
           'less_equal',
           'less_than',
           'logical_and',
           'logical_not',
           'logical_or',
           'logical_xor',
           'not_equal',
           'allclose',
           'is_tensor',
           'cast',
           'concat',
           'expand',
           'broadcast_to',
           'expand_as',
           'flatten',
340
           'flatten_',
341 342 343 344 345 346 347 348 349 350 351 352 353
           'gather',
           'gather_nd',
           'reshape',
           'reshape_',
           'reverse',
           'scatter',
           'scatter_',
           'scatter_nd_add',
           'scatter_nd',
           'shard_index',
           'slice',
           'split',
           'chunk',
F
From00 已提交
354
           'tensordot',
355 356 357 358 359 360
           'squeeze',
           'squeeze_',
           'stack',
           'strided_slice',
           'transpose',
           'unique',
D
duanboqiang 已提交
361
           'unique_consecutive',
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
           'unsqueeze',
           'unsqueeze_',
           'unstack',
           'flip',
           'unbind',
           'roll',
           'tile',
           'argmax',
           'argmin',
           'argsort',
           'masked_select',
           'topk',
           'where',
           'index_select',
           'nonzero',
           'sort',
           'index_sample',
           'mean',
           'std',
           'var',
           'numel',
           'median',
           'rank',
           'shape',
           'real',
Z
zyfncg 已提交
387
           'imag',
388
           'digamma',
389 390
           'diagonal',
           'trunc',
391 392 393 394
           'bitwise_and',
           'bitwise_or',
           'bitwise_xor',
           'bitwise_not',
395
           'broadcast_tensors',
L
Lijunhui 已提交
396
           'eig',
J
JYChen 已提交
397
           'uniform_',
398
           'multi_dot',
W
Weilong Wu 已提交
399
           'solve',
400
           'triangular_solve'
401 402 403 404 405 406 407 408
]

#this list used in math_op_patch.py for magic_method bind
magic_method_func = [
    ('__and__', 'bitwise_and'),
    ('__or__', 'bitwise_or'),
    ('__xor__', 'bitwise_xor'),
    ('__invert__', 'bitwise_not'),
409
]