You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_ops.py 87 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280
  1. # Copyright 2020 Huawei Technologies Co., Ltd
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. # ============================================================================
  15. """ test ops """
  16. import functools
  17. import numpy as np
  18. import mindspore.nn as nn
  19. import mindspore.ops.composite as C
  20. from mindspore import Tensor
  21. from mindspore import ops, Parameter, context
  22. from mindspore.common import dtype as mstype
  23. from mindspore.ops import functional as F
  24. from mindspore.ops import operations as P
  25. from mindspore.ops.operations import _grad_ops as G
  26. from mindspore.ops.operations import _inner_ops as inner
  27. from ..ut_filter import non_graph_engine
  28. from ....mindspore_test_framework.mindspore_test import mindspore_test
  29. from ....mindspore_test_framework.pipeline.forward.compile_forward \
  30. import (pipeline_for_compile_forward_ge_graph_for_case_by_case_config,
  31. pipeline_for_compile_forward_ge_graph_for_case_by_case_config_exception)
  32. from ....mindspore_test_framework.pipeline.gradient.compile_gradient \
  33. import pipeline_for_compile_grad_ge_graph_for_case_by_case_config
  34. class InputBackward(nn.Cell):
  35. def __init__(self, network):
  36. super(InputBackward, self).__init__()
  37. self.network = network
  38. self.network.set_train()
  39. self.grad = C.grad_all_with_sens
  40. def construct(self, x1, x2, x3, sens):
  41. return self.grad(self.network)(x1, x2, x3, sens)
  42. class NetForTupleInput(nn.Cell):
  43. def __init__(self, op):
  44. super(NetForTupleInput, self).__init__()
  45. self.op = op
  46. def construct(self, x1, x2):
  47. return self.op((x1, x2))
  48. class StridedSlicessdNet(nn.Cell):
  49. def __init__(self):
  50. super(StridedSlicessdNet, self).__init__()
  51. self.rank = P.Rank()
  52. def construct(self, x1):
  53. return P.StridedSlice(1, 1, 0, self.rank(x1), 0)(x1, (0, 0), (0, 0), (1, 1))
  54. class NetForConcat(nn.Cell):
  55. def __init__(self):
  56. super(NetForConcat, self).__init__()
  57. self.concat = P.Concat()
  58. def construct(self, x1):
  59. return self.concat((x1, x1))
  60. class NetForConcat1(nn.Cell):
  61. def __init__(self):
  62. super(NetForConcat1, self).__init__()
  63. self.concat = P.Concat()
  64. def construct(self, x1, x2):
  65. return self.concat((x1, x2))
  66. class NetForPackInput(nn.Cell):
  67. def __init__(self, op):
  68. super(NetForPackInput, self).__init__()
  69. self.op = op
  70. self.mul = P.Mul()
  71. def construct(self, *args):
  72. t = ()
  73. for element in args:
  74. t = t + (self.mul(element, element),)
  75. return self.op(t)
  76. class NetForUnpackInput(nn.Cell):
  77. def __init__(self, op):
  78. super(NetForUnpackInput, self).__init__()
  79. self.op = op
  80. self.mul = P.Mul()
  81. def construct(self, x1):
  82. return self.op((self.mul(x1, x1)))
  83. class NetForFlatten(nn.Cell):
  84. def __init__(self):
  85. super(NetForFlatten, self).__init__()
  86. self.flatten = P.Flatten()
  87. def construct(self, x, y):
  88. return self.flatten(x) + y
  89. class NetForFlatten0D(nn.Cell):
  90. def __init__(self):
  91. super(NetForFlatten0D, self).__init__()
  92. self.flatten = P.Flatten()
  93. def construct(self, x):
  94. return self.flatten(x)
  95. class NetForFlattenComposed(nn.Cell):
  96. # make flatten op together with other ops for testing flatten grad
  97. def __init__(self):
  98. super(NetForFlattenComposed, self).__init__()
  99. self.flatten = P.Flatten()
  100. def construct(self, x, y):
  101. return self.flatten(x + x) + y
  102. class ArgmaxNet(nn.Cell):
  103. def __init__(self):
  104. super(ArgmaxNet, self).__init__()
  105. self.argmax = P.Argmax(axis=1)
  106. def construct(self, input_):
  107. return self.argmax(input_)
  108. class ArgminNet(nn.Cell):
  109. def __init__(self):
  110. super(ArgminNet, self).__init__()
  111. self.argmin = P.Argmin(axis=1)
  112. def construct(self, input_):
  113. return self.argmin(input_)
  114. class CumSumNet(nn.Cell):
  115. def __init__(self):
  116. super(CumSumNet, self).__init__()
  117. self.cumsum = P.CumSum()
  118. self.axis = 1
  119. def construct(self, input_):
  120. return self.cumsum(input_, self.axis)
  121. class SummaryNet(nn.Cell):
  122. def __init__(self):
  123. super(SummaryNet, self).__init__()
  124. self.s = P.ScalarSummary()
  125. self.add = P.TensorAdd()
  126. def construct(self, x, y):
  127. self.s("x1", x)
  128. return self.add(x, y)
  129. class HistogramSummaryNet(nn.Cell):
  130. def __init__(self):
  131. super(HistogramSummaryNet, self).__init__()
  132. self.summary = P.HistogramSummary()
  133. self.add = P.TensorAdd()
  134. def construct(self, x, y):
  135. out = self.add(x, y)
  136. string_in = "out"
  137. self.summary(string_in, out)
  138. return out
  139. class ScatterUpdate(nn.Cell):
  140. """ScatterUpdate net definition"""
  141. def __init__(self, ref_shape, dtype=np.float32, use_locking=False):
  142. super(ScatterUpdate, self).__init__()
  143. self.scatter_update = P.ScatterUpdate(use_locking)
  144. self.ref = Parameter(Tensor(np.ones(ref_shape, dtype)), name="ref")
  145. def construct(self, indices, updates):
  146. out = self.scatter_update(self.ref, indices, updates)
  147. return out
  148. class ScatterMax(nn.Cell):
  149. """ScatterMax net definition"""
  150. def __init__(self, dtype=np.float32, use_locking=False):
  151. super(ScatterMax, self).__init__()
  152. self.scatter_max = P.ScatterMax(use_locking)
  153. self.ref = Parameter(Tensor(np.array([[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]], dtype)), name="ref")
  154. def construct(self, indices, updates):
  155. out = self.scatter_max(self.ref, indices, updates)
  156. return out
  157. class ScatterMin(nn.Cell):
  158. """ScatterMin net definition"""
  159. def __init__(self, dtype=np.float32, use_locking=False):
  160. super(ScatterMin, self).__init__()
  161. self.scatter_min = P.ScatterMin(use_locking)
  162. self.ref = Parameter(Tensor(np.array([[-1.0, 2.0, 3.0], [-4.0, 1.0, 6.0]], dtype)), name="ref")
  163. def construct(self, indices, updates):
  164. out = self.scatter_min(self.ref, indices, updates)
  165. return out
  166. class ScatterAdd(nn.Cell):
  167. """ScatterAdd net definition"""
  168. def __init__(self, ref_shape, dtype=np.float32, use_locking=False):
  169. super(ScatterAdd, self).__init__()
  170. self.scatter_add = P.ScatterAdd(use_locking)
  171. self.ref = Parameter(Tensor(np.ones(ref_shape, dtype)), name="ref")
  172. def construct(self, indices, updates):
  173. out = self.scatter_add(self.ref, indices, updates)
  174. return out
  175. class ScatterSub(nn.Cell):
  176. """ScatterSub net definition"""
  177. def __init__(self, ref_shape, dtype=np.float32, use_locking=False):
  178. super(ScatterSub, self).__init__()
  179. self.scatter_sub = P.ScatterSub(use_locking)
  180. self.ref = Parameter(Tensor(np.ones(ref_shape, dtype)), name="ref")
  181. def construct(self, indices, updates):
  182. out = self.scatter_sub(self.ref, indices, updates)
  183. return out
  184. class ScatterMul(nn.Cell):
  185. """ScatterMul net definition"""
  186. def __init__(self, ref_shape, dtype=np.float32, use_locking=False):
  187. super(ScatterMul, self).__init__()
  188. self.scatter_mul = P.ScatterMul(use_locking)
  189. self.ref = Parameter(Tensor(np.ones(ref_shape, dtype)), name="ref")
  190. def construct(self, indices, updates):
  191. out = self.scatter_mul(self.ref, indices, updates)
  192. return out
  193. class ScatterDiv(nn.Cell):
  194. """ScatterDiv net definition"""
  195. def __init__(self, ref_shape, dtype=np.float32, use_locking=False):
  196. super(ScatterDiv, self).__init__()
  197. self.scatter_div = P.ScatterDiv(use_locking)
  198. self.ref = Parameter(Tensor(np.ones(ref_shape, dtype)*10), name="ref")
  199. def construct(self, indices, updates):
  200. out = self.scatter_div(self.ref, indices, updates)
  201. return out
  202. class ApplyFtrlNet(nn.Cell):
  203. def __init__(self):
  204. super(ApplyFtrlNet, self).__init__()
  205. self.apply_ftrl = P.ApplyFtrl()
  206. self.lr = 0.001
  207. self.l1 = 0.0
  208. self.l2 = 0.0
  209. self.lr_power = -0.5
  210. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  211. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  212. self.linear = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="linear")
  213. def construct(self, grad):
  214. out = self.apply_ftrl(self.var, self.accum, self.linear, grad, self.lr, self.l1, self.l2, self.lr_power)
  215. return out
  216. class SparseApplyFtrlNet(nn.Cell):
  217. def __init__(self):
  218. super(SparseApplyFtrlNet, self).__init__()
  219. self.sparse_apply_ftrl = P.SparseApplyFtrl(lr=0.001, l1=0.0, l2=0.0, lr_power=-0.5)
  220. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  221. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  222. self.linear = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="linear")
  223. def construct(self, grad, indices):
  224. out = self.sparse_apply_ftrl(self.var, self.accum, self.linear, grad, indices)
  225. return out
  226. class SparseApplyFtrlV2Net(nn.Cell):
  227. def __init__(self):
  228. super(SparseApplyFtrlV2Net, self).__init__()
  229. self.sparse_apply_ftrl_v2 = P.SparseApplyFtrlV2(lr=0.001, l1=0.0, l2=0.0, l2_shrinkage=0.0, lr_power=-0.5)
  230. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  231. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  232. self.linear = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="linear")
  233. def construct(self, grad, indices):
  234. out = self.sparse_apply_ftrl_v2(self.var, self.accum, self.linear, grad, indices)
  235. return out
  236. class SparseApplyProximalAdagradNet(nn.Cell):
  237. def __init__(self):
  238. super(SparseApplyProximalAdagradNet, self).__init__()
  239. self.sparse_apply_proximal_adagrad = P.SparseApplyProximalAdagrad()
  240. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  241. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  242. self.lr = 0.01
  243. self.l1 = 0.0
  244. self.l2 = 0.0
  245. def construct(self, grad, indices):
  246. out = self.sparse_apply_proximal_adagrad(self.var, self.accum, self.lr, self.l1, self.l2, grad, indices)
  247. return out
  248. class ApplyProximalAdagradNet(nn.Cell):
  249. def __init__(self):
  250. super(ApplyProximalAdagradNet, self).__init__()
  251. self.apply_proximal_adagrad = P.ApplyProximalAdagrad()
  252. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  253. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  254. self.lr = 0.01
  255. self.l1 = 0.0
  256. self.l2 = 0.0
  257. def construct(self, grad):
  258. out = self.apply_proximal_adagrad(self.var, self.accum, self.lr, self.l1, self.l2, grad)
  259. return out
  260. class ApplyAdaMaxNet(nn.Cell):
  261. def __init__(self):
  262. super(ApplyAdaMaxNet, self).__init__()
  263. self.apply_ada_max = P.ApplyAdaMax()
  264. self.beta1_power = 0.9
  265. self.lr = 0.001
  266. self.beta1 = 0.9
  267. self.beta2 = 0.99
  268. self.epsilon = 1e-10
  269. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  270. self.m = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="m")
  271. self.v = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="v")
  272. def construct(self, grad):
  273. out = self.apply_ada_max(self.var, self.m, self.v, self.beta1_power, self.lr,
  274. self.beta1, self.beta2, self.epsilon, grad)
  275. return out
  276. class ApplyAdadeltaNet(nn.Cell):
  277. def __init__(self):
  278. super(ApplyAdadeltaNet, self).__init__()
  279. self.apply_adadelta = P.ApplyAdadelta()
  280. self.lr = 0.001
  281. self.rho = 0.0
  282. self.epsilon = 1e-6
  283. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  284. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  285. self.accum_update = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum_update")
  286. def construct(self, grad):
  287. out = self.apply_adadelta(self.var, self.accum, self.accum_update, self.lr, self.rho, self.epsilon, grad)
  288. return out
  289. class ApplyAdagradNet(nn.Cell):
  290. def __init__(self):
  291. super(ApplyAdagradNet, self).__init__()
  292. self.apply_adagrad = P.ApplyAdagrad()
  293. self.lr = 0.001
  294. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  295. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  296. def construct(self, grad):
  297. out = self.apply_adagrad(self.var, self.accum, self.lr, grad)
  298. return out
  299. class ApplyAdagradV2Net(nn.Cell):
  300. def __init__(self):
  301. super(ApplyAdagradV2Net, self).__init__()
  302. self.apply_adagrad_v2 = P.ApplyAdagradV2(epsilon=1e-6)
  303. self.lr = 0.001
  304. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  305. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  306. def construct(self, grad):
  307. out = self.apply_adagrad_v2(self.var, self.accum, self.lr, grad)
  308. return out
  309. class ApplyAddSignNet(nn.Cell):
  310. def __init__(self):
  311. super(ApplyAddSignNet, self).__init__()
  312. self.apply_add_sign = P.ApplyAddSign()
  313. self.lr = 0.001
  314. self.alpha = 1.0
  315. self.sign_decay = 0.99
  316. self.beta = 0.99
  317. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  318. self.m = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="m")
  319. def construct(self, grad):
  320. out = self.apply_add_sign(self.var, self.m, self.lr, self.alpha, self.sign_decay, self.beta, grad)
  321. return out
  322. class ApplyPowerSignNet(nn.Cell):
  323. def __init__(self):
  324. super(ApplyPowerSignNet, self).__init__()
  325. self.apply_power_sign = P.ApplyPowerSign()
  326. self.lr = 0.001
  327. self.logbase = np.e
  328. self.sign_decay = 0.99
  329. self.beta = 0.99
  330. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  331. self.m = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="m")
  332. def construct(self, grad):
  333. out = self.apply_power_sign(self.var, self.m, self.lr, self.logbase, self.sign_decay, self.beta, grad)
  334. return out
  335. class ApplyGradientDescentNet(nn.Cell):
  336. def __init__(self):
  337. super(ApplyGradientDescentNet, self).__init__()
  338. self.apply_gradient_descent = P.ApplyGradientDescent()
  339. self.alpha = 0.001
  340. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  341. def construct(self, delta):
  342. out = self.apply_gradient_descent(self.var, self.alpha, delta)
  343. return out
  344. class ApplyProximalGradientDescentNet(nn.Cell):
  345. def __init__(self):
  346. super(ApplyProximalGradientDescentNet, self).__init__()
  347. self.apply_proximal_gradient_descent = P.ApplyProximalGradientDescent()
  348. self.alpha = 0.001
  349. self.l1 = 0.0
  350. self.l2 = 0.0
  351. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  352. def construct(self, delta):
  353. out = self.apply_proximal_gradient_descent(self.var, self.alpha, self.l1, self.l2, delta)
  354. return out
  355. class SparseApplyAdagradNet(nn.Cell):
  356. def __init__(self):
  357. super(SparseApplyAdagradNet, self).__init__()
  358. self.sparse_apply_adagrad = P.SparseApplyAdagrad(lr=0.01)
  359. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  360. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  361. def construct(self, grad, indices):
  362. out = self.sparse_apply_adagrad(self.var, self.accum, grad, indices)
  363. return out
  364. class SparseApplyAdagradV2Net(nn.Cell):
  365. def __init__(self):
  366. super(SparseApplyAdagradV2Net, self).__init__()
  367. self.sparse_apply_adagrad_v2 = P.SparseApplyAdagradV2(lr=0.01, epsilon=0.001)
  368. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  369. self.accum = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="accum")
  370. def construct(self, grad, indices):
  371. out = self.sparse_apply_adagrad_v2(self.var, self.accum, grad, indices)
  372. return out
  373. class ApplyRMSNet(nn.Cell):
  374. def __init__(self):
  375. super(ApplyRMSNet, self).__init__()
  376. self.apply_rms = P.ApplyRMSProp()
  377. self.lr = 0.001
  378. self.rho = 0.0
  379. self.momentum = 0.0
  380. self.epsilon = 1e-10
  381. self.var = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="var")
  382. self.ms = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="ms")
  383. self.moment = Parameter(Tensor(np.random.rand(3, 3).astype(np.float32)), name="moment")
  384. def construct(self, grad):
  385. out = self.apply_rms(self.var, self.ms, self.moment, self.lr, grad, self.rho, self.momentum, self.epsilon)
  386. return out
  387. class InplaceAddNet(nn.Cell):
  388. def __init__(self):
  389. super(InplaceAddNet, self).__init__()
  390. self.inplace_add = P.InplaceAdd(indices=(0, 1))
  391. def construct(self, x, v):
  392. out = self.inplace_add(x, v)
  393. return out
  394. class InplaceSubNet(nn.Cell):
  395. def __init__(self):
  396. super(InplaceSubNet, self).__init__()
  397. self.inplace_sub = P.InplaceSub(indices=(0, 1))
  398. def construct(self, x, v):
  399. out = self.inplace_sub(x, v)
  400. return out
  401. class NormalNet(nn.Cell):
  402. def __init__(self, shape=None, seed=0):
  403. super(NormalNet, self).__init__()
  404. self.shape = shape
  405. self.normal = P.Normal(seed=seed)
  406. def construct(self, mean, stddev):
  407. out = self.normal(self.shape, mean, stddev)
  408. return out
  409. class StridedSliceNet(nn.Cell):
  410. def __init__(self):
  411. super(StridedSliceNet, self).__init__()
  412. self.begins = (1, 2, 3, 2, 1)
  413. self.ends = (5, 6, 7, 8, 9)
  414. self.strides = (1, 2, 3, 2, 1)
  415. self.strided_slice_0 = P.StridedSlice(begin_mask=3, end_mask=5, ellipsis_mask=4,
  416. shrink_axis_mask=2, new_axis_mask=8)
  417. self.strided_slice_1 = P.StridedSlice(begin_mask=5, end_mask=2, ellipsis_mask=2,
  418. shrink_axis_mask=6, new_axis_mask=10)
  419. self.strided_slice_2 = P.StridedSlice(begin_mask=3, end_mask=3, ellipsis_mask=4,
  420. shrink_axis_mask=5, new_axis_mask=13)
  421. self.strided_slice_3 = P.StridedSlice(begin_mask=0, end_mask=0, ellipsis_mask=4,
  422. shrink_axis_mask=12, new_axis_mask=15)
  423. self.const_0 = Tensor(np.ones([6, 8, 9, 1, 8], np.float32))
  424. self.const_1 = Tensor(np.ones([5, 7, 8, 1, 8], np.float32))
  425. self.const_2 = Tensor(np.ones([1, 3, 7, 8, 9, 1, 8], np.float32))
  426. self.const_3 = Tensor(np.ones([1, 1, 6, 7, 8, 9, 1, 8], np.float32))
  427. def construct(self, x):
  428. out_0 = self.strided_slice_0(x, self.begins, self.ends, self.strides) + self.const_0
  429. out_1 = self.strided_slice_1(x, self.begins, self.ends, self.strides) + self.const_1
  430. out_2 = self.strided_slice_2(x, self.begins, self.ends, self.strides) + self.const_2
  431. out_3 = self.strided_slice_3(x, self.begins, self.ends, self.strides) + self.const_3
  432. return out_0, out_1, out_2, out_3
  433. def test_strided_slice_const():
  434. class StridedSLiceConstNet(nn.Cell):
  435. """StridedSLiceConstNet net definition"""
  436. def __init__(self):
  437. super(StridedSLiceConstNet, self).__init__()
  438. self.begins = (0, 2, -5, 2, 1)
  439. self.ends = (0, 6, 9, 8, 9)
  440. self.strides = (1, 2, 1, 2, 1)
  441. self.strided_slice = P.StridedSlice(begin_mask=2,
  442. end_mask=6,
  443. ellipsis_mask=4,
  444. shrink_axis_mask=6,
  445. new_axis_mask=18)
  446. def construct(self, x):
  447. out = self.strided_slice(x, self.begins, self.ends, self.strides)
  448. return out
  449. net = StridedSLiceConstNet()
  450. context.set_context(mode=context.GRAPH_MODE, save_graphs=True)
  451. x = Tensor(np.ones([6, 7, 8, 9, 10]), mstype.float32)
  452. ret = net(x)
  453. assert ret.shape == (0, 1, 7, 8, 9, 3, 1)
  454. assert (ret.asnumpy() == np.array([], np.float32).reshape([0, 1, 7, 8, 9, 3, 1])).all()
  455. class ParallelConcatNet(nn.Cell):
  456. def __init__(self):
  457. super(ParallelConcatNet, self).__init__()
  458. self.parallel_concat = P.ParallelConcat()
  459. def construct(self, x1, x2):
  460. return self.parallel_concat((x1, x2))
  461. test_case_math_ops = [
  462. ('BitwiseAnd', {
  463. 'block': P.BitwiseAnd(),
  464. 'desc_inputs': [Tensor(np.array([0, 0, 1, -1, 1, 1, 1]), mstype.int16),
  465. Tensor(np.array([0, 1, 1, -1, -1, 2, 3]), mstype.int16)],
  466. 'skip': ['backward']}),
  467. ('BitwiseAnd_1', {
  468. 'block': P.BitwiseAnd(),
  469. 'desc_inputs': [Tensor(np.array([[1, 2, 3], [-1, -2, -3]]), mstype.int16),
  470. Tensor(np.array([1, 1, 1]), mstype.int16)],
  471. 'skip': ['backward']}),
  472. ('BitwiseOr', {
  473. 'block': P.BitwiseOr(),
  474. 'desc_inputs': [Tensor(np.array([0, 0, 1, -1, 1, 1, 1]), mstype.int16),
  475. Tensor(np.array([0, 1, 1, -1, -1, 2, 3]), mstype.int16)],
  476. 'skip': ['backward']}),
  477. ('BitwiseOr_1', {
  478. 'block': P.BitwiseOr(),
  479. 'desc_inputs': [Tensor(np.array([[1, 2, 3], [-1, -2, -3]]), mstype.int16),
  480. Tensor(np.array([1, 1, 1]), mstype.int16)],
  481. 'skip': ['backward']}),
  482. ('BitwiseXor', {
  483. 'block': P.BitwiseXor(),
  484. 'desc_inputs': [Tensor(np.array([0, 0, 1, -1, 1, 1, 1]), mstype.int16),
  485. Tensor(np.array([0, 1, 1, -1, -1, 2, 3]), mstype.int16)],
  486. 'skip': ['backward']}),
  487. ('BitwiseXor_1', {
  488. 'block': P.BitwiseXor(),
  489. 'desc_inputs': [Tensor(np.array([[1, 2, 3], [-1, -2, -3]]), mstype.int16),
  490. Tensor(np.array([1, 1, 1]), mstype.int16)],
  491. 'skip': ['backward']}),
  492. ('Neg', {
  493. 'block': P.Neg(),
  494. 'desc_inputs': [[1, 3, 4, 4]],
  495. 'desc_bprop': [[1, 3, 4, 4]]}),
  496. ('Sub', {
  497. 'block': P.Sub(),
  498. 'desc_inputs': [[3, 5], [2, 3, 3, 5]],
  499. 'desc_bprop': [[2, 3, 3, 5]]}),
  500. ('TensorAdd', {
  501. 'block': P.TensorAdd(),
  502. 'desc_inputs': [[3, 5], [2, 3, 3, 5]],
  503. 'desc_bprop': [[2, 3, 3, 5]]}),
  504. ('Mul0', {
  505. 'block': P.Mul(),
  506. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5]],
  507. 'desc_bprop': [[2, 3, 3, 5]]}),
  508. ('Mul1', {
  509. 'block': P.Mul(),
  510. 'desc_inputs': [[2, 3, 1, 1], [2, 3, 3, 5]],
  511. 'desc_bprop': [[2, 3, 3, 5]]}),
  512. ('Mul2', {
  513. 'block': P.Mul(),
  514. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 1, 1]],
  515. 'desc_bprop': [[2, 3, 3, 5]],
  516. 'skip': ['backward']}),
  517. ('Mul3', {
  518. 'block': P.Mul(),
  519. 'desc_inputs': [[3, 5], [2, 3, 3, 5]],
  520. 'desc_bprop': [[2, 3, 3, 5]],
  521. 'skip': ['backward']}),
  522. ('Mul4', {
  523. 'block': P.Mul(),
  524. 'desc_inputs': [[2, 3, 3, 5], [3, 5]],
  525. 'desc_bprop': [[2, 3, 3, 5]],
  526. 'skip': ['backward']}),
  527. ('Add0', {
  528. 'block': P.TensorAdd(),
  529. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5]],
  530. 'desc_bprop': [[2, 3, 3, 5]]}),
  531. ('Add1', {
  532. 'block': P.TensorAdd(),
  533. 'desc_inputs': [[3, 5], [2, 3, 3, 5]],
  534. 'desc_bprop': [[2, 3, 3, 5]],
  535. 'skip': ['backward']}),
  536. ('Add2', {
  537. 'block': P.TensorAdd(),
  538. 'desc_inputs': [[2, 3, 3, 5], [3, 5]],
  539. 'desc_bprop': [[2, 3, 3, 5]],
  540. 'skip': ['backward']}),
  541. ('Add3', {
  542. 'block': P.TensorAdd(),
  543. 'desc_inputs': [[2, 3, 1, 1], [2, 3, 3, 5]],
  544. 'desc_bprop': [[2, 3, 3, 5]],
  545. 'skip': ['backward']}),
  546. ('Add4', {
  547. 'block': P.TensorAdd(),
  548. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 1, 1]],
  549. 'desc_bprop': [[2, 3, 3, 5]],
  550. 'skip': ['backward']}),
  551. ('Minimum', {
  552. 'block': P.Minimum(),
  553. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5]],
  554. 'desc_bprop': [[2, 3, 3, 5]]}),
  555. ('Pow_0', {
  556. 'block': P.Pow(),
  557. 'desc_const': [2.0],
  558. 'desc_inputs': [[2, 3, 3, 5]],
  559. 'desc_bprop': [[2, 3, 3, 5]]}),
  560. ('Pow_1', {
  561. 'block': P.Pow(),
  562. 'desc_inputs': [[3, 5], [2, 3, 3, 5]],
  563. 'desc_bprop': [[2, 3, 3, 5]]}),
  564. ('Exp', {
  565. 'block': P.Exp(),
  566. 'desc_inputs': [[2, 3]],
  567. 'desc_bprop': [[2, 3]]}),
  568. ('Expm1', {
  569. 'block': P.Expm1(),
  570. 'desc_inputs': [[2, 3]],
  571. 'desc_bprop': [[2, 3]]}),
  572. ('Erf', {
  573. 'block': P.Erf(),
  574. 'desc_inputs': [Tensor(np.array([-2, -1, 0, 1, 2]).astype(np.float16))],
  575. 'desc_bprop': [Tensor(np.array([-2, -1, 0, 1, 2]).astype(np.float16))]}),
  576. ('Floor', {
  577. 'block': P.Floor(),
  578. 'desc_inputs': [[2, 512, 56, 56]],
  579. 'desc_bprop': [[2, 512, 56, 56]],
  580. 'skip': ['backward']}),
  581. ('Ceil', {
  582. 'block': P.Ceil(),
  583. 'desc_inputs': [[2, 512, 56, 56]],
  584. 'desc_bprop': [[2, 512, 56, 56]],
  585. 'skip': ['backward']}),
  586. ('InplaceAdd', {
  587. 'block': InplaceAddNet(),
  588. 'desc_inputs': [Tensor(np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32)),
  589. Tensor(np.array([[0.5, 1], [1, 1.5]]).astype(np.float32))],
  590. 'skip': ['backward']}),
  591. ('InplaceSub', {
  592. 'block': InplaceSubNet(),
  593. 'desc_inputs': [Tensor(np.array([[1, 2], [3, 4], [5, 6]]).astype(np.float32)),
  594. Tensor(np.array([[0.5, 1], [1, 1.5]]).astype(np.float32))],
  595. 'skip': ['backward']}),
  596. ('ACos', {
  597. 'block': P.ACos(),
  598. 'desc_inputs': [Tensor(np.array([2., 3.]).astype(np.float32))],
  599. 'desc_bprop': [Tensor(np.array([2., 3.]).astype(np.float32))]}),
  600. ('ACosGrad', {
  601. 'block': G.ACosGrad(),
  602. 'desc_inputs': [[2, 3], [2, 3]],
  603. 'skip': ['backward']}),
  604. ('Acosh', {
  605. 'block': P.Acosh(),
  606. 'desc_inputs': [Tensor(np.array([2., 3.]).astype(np.float32))],
  607. 'desc_bprop': [Tensor(np.array([2., 3.]).astype(np.float32))]}),
  608. ('AcoshGrad', {
  609. 'block': G.AcoshGrad(),
  610. 'desc_inputs': [[2, 3], [2, 3]],
  611. 'skip': ['backward']}),
  612. ('Sin', {
  613. 'block': P.Sin(),
  614. 'desc_inputs': [[2, 3]],
  615. 'desc_bprop': [[2, 3]]}),
  616. ('Asin', {
  617. 'block': P.Asin(),
  618. 'desc_inputs': [[2, 3]],
  619. 'desc_bprop': [[2, 3]]}),
  620. ('Asinh', {
  621. 'block': P.Asinh(),
  622. 'desc_inputs': [[3, 4, 5]],
  623. 'desc_bprop': [[3, 4, 5]]}),
  624. ('Reciprocal', {
  625. 'block': P.Reciprocal(),
  626. 'desc_inputs': [[2, 3, 3, 5]],
  627. 'desc_bprop': [[2, 3, 3, 5]]}),
  628. ('Minimum_0', {
  629. 'block': P.Minimum(),
  630. 'desc_inputs': [[2, 3, 3, 5], [3, 3, 5]],
  631. 'desc_bprop': [[2, 3, 3, 5]]}),
  632. ('Maximum', {
  633. 'block': P.Maximum(),
  634. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5]],
  635. 'desc_bprop': [[2, 3, 3, 5]]}),
  636. ('Maximum_0', {
  637. 'block': P.Maximum(),
  638. 'desc_inputs': [[3, 5], [2, 3, 3, 5]],
  639. 'desc_bprop': [[2, 3, 3, 5]]}),
  640. ('MaximumGrad', {
  641. 'block': G.MaximumGrad(),
  642. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5], [2, 3, 3, 5]],
  643. 'skip': ['backward']}),
  644. ('MinimumGrad', {
  645. 'block': G.MinimumGrad(),
  646. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5], [2, 3, 3, 5]],
  647. 'skip': ['backward']}),
  648. ('StridedSlice', {
  649. 'block': P.StridedSlice(),
  650. 'desc_const': [(0, 1, 2, 1),
  651. (2, 3, 3, 4),
  652. (1, 1, 1, 1)],
  653. 'desc_inputs': [[2, 3, 3, 5]],
  654. 'desc_bprop': [[2, 2, 1, 3]]}),
  655. ('Slice_1', {
  656. 'block': P.Slice(),
  657. 'desc_const': [(0, 1, 2, 1),
  658. (1, 1, 1, 2)],
  659. 'desc_inputs': [[2, 3, 3, 5]],
  660. 'desc_bprop': [[1, 1, 1, 2]]}),
  661. ('StridedSliceGrad', {
  662. 'block': G.StridedSliceGrad(),
  663. 'desc_const': [(64, 1, 1024),
  664. (0, 1, 0),
  665. (64, 2, 1024),
  666. (1, 1, 1)],
  667. 'desc_inputs': [[64, 128, 1024]],
  668. 'skip': ['backward']}),
  669. ('Normal', {
  670. 'block': NormalNet((3, 2, 4), 0),
  671. 'desc_inputs': [Tensor(0.0, mstype.float32), Tensor(1.0, mstype.float32)],
  672. 'skip': ['backward']}),
  673. ('RandomChoiceWithMask', {
  674. 'block': P.RandomChoiceWithMask(256),
  675. 'desc_inputs': [Tensor(np.random.rand(24000, 4).astype(np.bool_))],
  676. 'desc_bprop': [[256, 4], [256, 4]],
  677. 'skip': ['backward']}),
  678. ('LessEqual', {
  679. 'block': P.LessEqual(),
  680. 'desc_inputs': [Tensor(np.random.rand(4).astype(np.float16)),
  681. Tensor(np.random.rand(4).astype(np.float16))],
  682. 'skip': ['backward']}),
  683. ('Less', {
  684. 'block': P.Less(),
  685. 'desc_inputs': [[2, 1, 4, 5], [2, 1, 4, 5]],
  686. 'desc_bprop': [Tensor(np.zeros((2, 1, 4, 5), np.bool_))],
  687. 'skip': ['backward']}),
  688. ('RealDiv_0', {
  689. 'block': P.RealDiv(),
  690. 'desc_const': [Tensor(2048.0), Tensor(0.0)],
  691. 'desc_inputs': [],
  692. 'skip': ['backward']}),
  693. ('RealDiv', {
  694. 'block': P.RealDiv(),
  695. 'desc_inputs': [[4], Tensor(np.ones(4).astype(np.float32))],
  696. 'desc_bprop': [[4]]}),
  697. ('RealDiv_1', {
  698. 'block': P.RealDiv(),
  699. 'desc_inputs': [[512, 1024], [512, 1024]],
  700. 'desc_bprop': [[512, 1024]]}),
  701. ('FloorDiv', {
  702. 'block': P.FloorDiv(),
  703. 'desc_inputs': [Tensor(np.random.rand(4).astype(np.float16)),
  704. Tensor(np.random.rand(4).astype(np.float16))],
  705. 'skip': ['backward']}),
  706. ('FloorMod', {
  707. 'block': P.FloorMod(),
  708. 'desc_inputs': [[3, 4, 5], [2, 3, 4, 5]],
  709. 'desc_bprop': [[2, 3, 4, 5]]}),
  710. ('identity', {
  711. 'block': ops.functional.identity,
  712. 'desc_inputs': [[2, 2]],
  713. 'skip': ['backward']}),
  714. ('MatMul_1', {
  715. 'block': P.MatMul(transpose_a=False, transpose_b=False),
  716. 'desc_inputs': [[1024, 160], [160, 1024]],
  717. 'desc_bprop': [[1024, 1024]]}),
  718. ('MatMul_2', {
  719. 'block': P.MatMul(transpose_a=True, transpose_b=True),
  720. 'desc_inputs': [[160, 1024], [1024, 160]],
  721. 'desc_bprop': [[1024, 1024]]}),
  722. ('Sub', {
  723. 'block': P.Sub(),
  724. 'desc_inputs': [[3], [3]],
  725. 'desc_bprop': [[3]]}),
  726. ('TruncatedNormal', {
  727. 'block': P.TruncatedNormal(),
  728. 'desc_const': [(1, 2, 3)],
  729. 'desc_inputs': [],
  730. 'skip': ['backward'],
  731. 'add_fake_input': True}),
  732. ('Select', {
  733. 'block': P.Select(),
  734. 'desc_inputs': [Tensor(np.array([[True, False, False], [False, True, True]])),
  735. [2, 3], [2, 3]],
  736. 'desc_bprop': [[2, 3]]}),
  737. ('Rank', {
  738. 'block': P.Rank(),
  739. 'desc_inputs': [[2, 3]],
  740. 'skip': ['backward']}),
  741. ('InvertPermutation', {
  742. 'block': P.InvertPermutation(),
  743. 'desc_const': [(0, 3, 1, 2)],
  744. 'desc_inputs': [],
  745. 'skip': ['backward']}),
  746. ('Square', {
  747. 'block': P.Square(),
  748. 'desc_inputs': [[4]],
  749. 'desc_bprop': [[4]]}),
  750. ('Rsqrt', {
  751. 'block': P.Rsqrt(),
  752. 'desc_inputs': [[4]],
  753. 'desc_bprop': [[4]]}),
  754. ('Sqrt', {
  755. 'block': P.Sqrt(),
  756. 'desc_inputs': [[4]],
  757. 'desc_bprop': [[4]]}),
  758. ('RealDiv', {
  759. 'block': P.RealDiv(),
  760. 'desc_inputs': [[4, 5], [2, 3, 4, 5]],
  761. 'desc_bprop': [[2, 3, 4, 5]]}),
  762. ('Div', {
  763. 'block': P.Div(),
  764. 'desc_inputs': [[4, 5], [2, 3, 4, 5]],
  765. 'desc_bprop': [[2, 3, 4, 5]]}),
  766. ('Equal', {
  767. 'block': P.Equal(),
  768. 'desc_inputs': [[3, 4, 5], [4, 5]],
  769. 'desc_bprop': [Tensor(np.zeros((3, 4, 5), np.bool_))]}),
  770. ('NotEqual', {
  771. 'block': P.NotEqual(),
  772. 'desc_inputs': [[4, 1], [2, 3, 4, 5]],
  773. 'desc_bprop': [Tensor(np.ones((2, 3, 4, 5), np.bool_))]}),
  774. ('NotEqual_0', {
  775. 'block': P.NotEqual(),
  776. 'desc_inputs': [1, [2, 3, 4, 5]],
  777. 'desc_bprop': [Tensor(np.ones((2, 3, 4, 5), np.bool_))],
  778. 'skip': ['backward']}),
  779. ('ApproximateEqual', {
  780. 'block': P.ApproximateEqual(),
  781. 'desc_inputs': [[3, 4, 5], [3, 4, 5]],
  782. 'desc_bprop': [Tensor(np.zeros((3, 4, 5), np.bool_))]}),
  783. ('Greater', {
  784. 'block': P.Greater(),
  785. 'desc_inputs': [[2, 3, 4, 1], [4, 5]],
  786. 'desc_bprop': [Tensor(np.ones((2, 3, 4, 5), np.bool_))]}),
  787. ('GreaterEqual', {
  788. 'block': P.GreaterEqual(),
  789. 'desc_inputs': [[2, 3, 4, 1], [4, 5]],
  790. 'desc_bprop': [Tensor(np.ones((2, 3, 4, 5), np.bool_))]}),
  791. ('LogicalNot', {
  792. 'block': P.LogicalNot(),
  793. 'desc_inputs': [Tensor(np.zeros((3, 4, 5), np.bool_))],
  794. 'desc_bprop': [Tensor(np.ones((3, 4, 5), np.bool_))]}),
  795. ('LogicalAnd', {
  796. 'block': P.LogicalAnd(),
  797. 'desc_inputs': [Tensor(np.zeros((2, 3, 4), np.bool_)), Tensor(np.ones((1), np.bool_))],
  798. 'desc_bprop': [Tensor(np.zeros((2, 3, 4), np.bool_))]}),
  799. ('LogicalOr', {
  800. 'block': P.LogicalOr(),
  801. 'desc_inputs': [Tensor(np.zeros((3, 4, 5), np.bool_)), Tensor(np.ones((3, 1, 1), np.bool_))],
  802. 'desc_bprop': [Tensor(np.zeros((3, 4, 5), np.bool_))]}),
  803. ('NpuAllocFloatStatus', {
  804. 'block': P.NPUAllocFloatStatus(),
  805. 'desc_inputs': [],
  806. 'add_fack_input': True,
  807. 'fack_input_type': np.float32,
  808. 'desc_bprop': [Tensor(np.zeros([8]).astype(np.float32))],
  809. 'skip': ['backward']}),
  810. ('NpuGetFloatStatus', {
  811. 'block': P.NPUGetFloatStatus(),
  812. 'desc_inputs': [Tensor(np.zeros([8]).astype(np.float32))],
  813. 'desc_bprop': [Tensor(np.zeros([8]).astype(np.float32))],
  814. 'skip': ['backward']}),
  815. ('NpuClearFloatStatus', {
  816. 'block': P.NPUClearFloatStatus(),
  817. 'desc_inputs': [Tensor(np.zeros([8]).astype(np.float32))],
  818. 'desc_bprop': [Tensor(np.zeros([8]).astype(np.float32))],
  819. 'skip': ['backward']}),
  820. ('CheckValid', {
  821. 'block': P.CheckValid(),
  822. 'desc_inputs': [[20000, 4], [3]],
  823. 'desc_bprop': [[20000]],
  824. 'skip': ['backward']}),
  825. ('NMSWithMask', {
  826. 'block': P.NMSWithMask(0.5),
  827. 'desc_inputs': [[128, 5]],
  828. 'desc_bprop': [[128, 5], [128], [128]],
  829. 'skip': ['backward']}),
  830. ('Abs', {
  831. 'block': P.Abs(),
  832. 'desc_inputs': [[4]],
  833. 'desc_bprop': [[4]]}),
  834. ('CumSum', {
  835. 'block': CumSumNet(),
  836. 'desc_inputs': [Tensor(np.array([[3, 4, 6, 10], [1, 6, 7, 9], [4, 3, 8, 7], [1, 3, 7, 9]]).astype(np.float32))],
  837. 'desc_bprop': [Tensor(np.array([[3, 4, 6, 10], [1, 6, 7, 9], [4, 3, 8, 7],
  838. [1, 3, 7, 9]]).astype(np.float32))]}),
  839. ('ReduceSum_3', {
  840. 'block': P.ReduceSum(),
  841. 'desc_const': [0],
  842. 'desc_inputs': [[3, 2]],
  843. 'desc_bprop': [[2]]}),
  844. ('ReduceSum_4', {
  845. 'block': P.ReduceSum(keep_dims=True),
  846. 'desc_const': [0],
  847. 'desc_inputs': [[3, 2]],
  848. 'desc_bprop': [[1, 2]]}),
  849. ('ReduceSum_5', {
  850. 'block': P.ReduceSum(keep_dims=True),
  851. 'desc_inputs': [[2, 3, 4]],
  852. 'desc_bprop': [[1, 1, 1]]}),
  853. ('ReduceSum_6', {
  854. 'block': P.ReduceSum(),
  855. 'desc_inputs': [[2, 3, 4]],
  856. 'desc_bprop': [[1]]}),
  857. ('Sum_0', {
  858. 'block': P.ReduceSum(),
  859. 'desc_const': [(1,)],
  860. 'desc_inputs': [[3, 2]],
  861. 'desc_bprop': [[3]]}),
  862. ('Sum_1', {
  863. 'block': P.ReduceSum(keep_dims=True),
  864. 'desc_const': [(1,)],
  865. 'desc_inputs': [[3, 2]],
  866. 'desc_bprop': [[3, 1]]}),
  867. ('Sum_2', {
  868. 'block': P.ReduceSum(),
  869. 'desc_const': [(0, 1)],
  870. 'desc_inputs': [[3, 2]],
  871. 'desc_bprop': [[1]]}),
  872. ('Sum_3', {
  873. 'block': P.ReduceSum(),
  874. 'desc_const': [0],
  875. 'desc_inputs': [[3, 2]],
  876. 'desc_bprop': [[2]]}),
  877. ('Sum_4', {
  878. 'block': P.ReduceSum(keep_dims=True),
  879. 'desc_const': [0],
  880. 'desc_inputs': [[3, 2]],
  881. 'desc_bprop': [[1, 2]]}),
  882. ('Sum_5', {
  883. 'block': P.ReduceSum(keep_dims=True),
  884. 'desc_const': [()],
  885. 'desc_inputs': [[2, 3, 4]],
  886. 'desc_bprop': [[1, 1, 1]]}),
  887. ('Sum_6', {
  888. 'block': P.ReduceSum(),
  889. 'desc_const': [()],
  890. 'desc_inputs': [[2, 3, 4]],
  891. 'desc_bprop': [[1]]}),
  892. ('Sign', {
  893. 'block': P.Sign(),
  894. 'desc_inputs': [[3]],
  895. 'desc_bprop': [[3]]}),
  896. ('Round', {
  897. 'block': P.Round(),
  898. 'desc_inputs': [[3]],
  899. 'desc_bprop': [[3]]}),
  900. ('Atan2', {
  901. 'block': P.Atan2(),
  902. 'desc_inputs': [Tensor(np.array([0, 1]).astype(np.float32)),
  903. Tensor(np.array([1, 1]).astype(np.float32))],
  904. 'desc_bprop': [[2]]}),
  905. ('SquareSumAll', {
  906. 'block': P.SquareSumAll(),
  907. 'desc_inputs': [Tensor(np.array([0, 1, 4, 5]).astype(np.float32)),
  908. Tensor(np.array([1, 1, 3, 7]).astype(np.float32))],
  909. 'skip': ['backward']}),
  910. ('Cos', {
  911. 'block': P.Cos(),
  912. 'desc_inputs': [[2, 3]],
  913. 'desc_bprop': [[2, 3]]}),
  914. ('ReduceAll', {
  915. 'block': P.ReduceAll(),
  916. 'desc_const': [1],
  917. 'desc_inputs': [Tensor(np.array([[True, False], [True, True]]))],
  918. 'desc_bprop': []}),
  919. ('BesselI0e', {
  920. 'block': P.BesselI0e(),
  921. 'desc_inputs': [[2, 3]],
  922. 'desc_bprop': [[2, 3]]}),
  923. ('BesselI1e', {
  924. 'block': P.BesselI1e(),
  925. 'desc_inputs': [[2, 3]],
  926. 'desc_bprop': [[2, 3]]}),
  927. ('Atan', {
  928. 'block': P.Atan(),
  929. 'desc_inputs': [[2, 3]],
  930. 'desc_bprop': [[2, 3]]}),
  931. ('AtanGrad', {
  932. 'block': G.AtanGrad(),
  933. 'desc_inputs': [[2, 3], [2, 3]],
  934. 'skip': ['backward']}),
  935. ('Atanh', {
  936. 'block': P.Atanh(),
  937. 'desc_inputs': [[2, 3]],
  938. 'desc_bprop': [[2, 3]]}),
  939. ('Cosh', {
  940. 'block': P.Cosh(),
  941. 'desc_inputs': [[3, 4, 5]],
  942. 'desc_bprop': [[3, 4, 5]]}),
  943. ('Sinh', {
  944. 'block': P.Sinh(),
  945. 'desc_inputs': [[3, 4, 5]],
  946. 'desc_bprop': [[3, 4, 5]]}),
  947. ('Inv', {
  948. 'block': P.Inv(),
  949. 'desc_inputs': [[21, 9, 12, 5]],
  950. 'desc_bprop': [[21, 9, 12, 5]]}),
  951. ('Invert', {
  952. 'block': P.Invert(),
  953. 'desc_inputs': [Tensor(np.array([[24, 4, 13, 9], [1, 5, 10, 8]]).astype(np.int16))],
  954. 'desc_bprop': [],
  955. 'skip': ['backward']}),
  956. ('HistogramFixedWidth', {
  957. 'block': P.HistogramFixedWidth(5),
  958. 'desc_inputs': [Tensor([-1.0, 0.0, 1.5, 2.0, 5.0, 15], mstype.float16), Tensor([0.0, 5.0], mstype.float16)],
  959. 'desc_bprop': [],
  960. 'skip': ['backward']}),
  961. ('Mod', {
  962. 'block': P.Mod(),
  963. 'desc_inputs': [[3, 4, 5], [2, 3, 4, 5]],
  964. 'desc_bprop': [[2, 3, 4, 5]]}),
  965. ]
  966. test_case_nn_ops = [
  967. ('BiasAdd', {
  968. 'block': P.BiasAdd(),
  969. 'desc_inputs': [[1, 3, 3, 3], [3]],
  970. 'desc_bprop': [[1, 3, 3, 3]]}),
  971. ('BiasAddGrad', {
  972. 'block': G.BiasAddGrad(),
  973. 'desc_inputs': [[1, 3, 3, 3]],
  974. 'skip': ['backward']}),
  975. ('Gelu', {
  976. 'block': P.Gelu(),
  977. 'desc_inputs': [[1, 3, 4, 4]],
  978. 'desc_bprop': [[1, 3, 4, 4]]}),
  979. ('GeluGrad', {
  980. 'block': G.GeluGrad(),
  981. 'desc_inputs': [[2, 2], [2, 2], [2, 2]],
  982. 'desc_bprop': [[2, 2]],
  983. 'skip': ['backward']}),
  984. ('Tanh', {
  985. 'block': P.Tanh(),
  986. 'desc_inputs': [[1, 3, 4, 4]],
  987. 'desc_bprop': [[1, 3, 4, 4]]}),
  988. ('TanhGrad', {
  989. 'block': G.TanhGrad(),
  990. 'desc_inputs': [[1, 3, 4, 4], [1, 3, 4, 4]],
  991. 'desc_bprop': [[1, 3, 4, 4]],
  992. 'skip': ['backward']}),
  993. ('ReLU', {
  994. 'block': P.ReLU(),
  995. 'desc_inputs': [[1, 3, 4, 4]],
  996. 'desc_bprop': [[1, 3, 4, 4]]}),
  997. ('ReLU6', {
  998. 'block': P.ReLU6(),
  999. 'desc_inputs': [[1, 3, 4, 4]],
  1000. 'desc_bprop': [[1, 3, 4, 4]]}),
  1001. ('ReLUV2', {
  1002. 'block': P.ReLUV2(),
  1003. 'desc_inputs': [[1, 3, 4, 4]],
  1004. 'desc_bprop': [[1, 3, 4, 4], ([1, 1, 4, 4, 2], {'dtype': np.uint8})]}),
  1005. ('ReLUGrad', {
  1006. 'block': G.ReluGrad(),
  1007. 'desc_inputs': [[1, 3, 4, 4], [1, 3, 4, 4]],
  1008. 'skip': ['backward']}),
  1009. ('Softplus', {
  1010. 'block': P.Softplus(),
  1011. 'desc_inputs': [[1, 3, 4, 4]],
  1012. 'desc_bprop': [[1, 3, 4, 4]]}),
  1013. ('SoftplusGrad', {
  1014. 'block': G.SoftplusGrad(),
  1015. 'desc_inputs': [[1, 3, 4, 4], [1, 3, 4, 4]],
  1016. 'skip': ['backward']}),
  1017. ('Elu', {
  1018. 'block': P.Elu(),
  1019. 'desc_inputs': [[2, 3, 4]],
  1020. 'desc_bprop': [[2, 3, 4]]}),
  1021. ('EluGrad', {
  1022. 'block': G.EluGrad(),
  1023. 'desc_inputs': [[2, 3, 4], [2, 3, 4]],
  1024. 'desc_bprop': [[2, 3, 4]],
  1025. 'skip': ['backward']}),
  1026. ('Sigmoid', {
  1027. 'block': P.Sigmoid(),
  1028. 'desc_inputs': [[1, 3, 4, 4]],
  1029. 'desc_bprop': [[1, 3, 4, 4]]}),
  1030. ('MaxPool', {
  1031. 'block': P.MaxPool(ksize=(2, 2), strides=(2, 2), padding="VALID"),
  1032. 'desc_inputs': [[100, 3, 28, 28]],
  1033. 'desc_bprop': [[100, 3, 14, 14]]}),
  1034. ('MaxPoolGrad', {
  1035. 'block': G.MaxPoolGrad(ksize=(2, 2), strides=(2, 2), padding="VALID"),
  1036. 'desc_inputs': [[3, 4, 6, 6], [3, 4, 3, 3], [3, 4, 3, 3]],
  1037. 'desc_bprop': [[3, 4, 6, 6]],
  1038. 'skip': ['backward']}),
  1039. ('AvgPool', {
  1040. 'block': P.AvgPool(ksize=(2, 2), strides=(2, 2), padding="VALID"),
  1041. 'desc_inputs': [[100, 3, 28, 28]],
  1042. 'desc_bprop': [[100, 3, 14, 14]]}),
  1043. ('AvgPoolGrad', {
  1044. 'block': G.AvgPoolGrad(ksize=(2, 2), strides=(2, 2), padding="VALID"),
  1045. 'desc_const': [(3, 4, 6, 6)],
  1046. 'const_first': True,
  1047. 'desc_inputs': [[3, 4, 6, 6]],
  1048. 'desc_bprop': [[3, 4, 6, 6]],
  1049. 'skip': ['backward']}),
  1050. ('MaxPoolWithArgmax', {
  1051. 'block': P.MaxPoolWithArgmax(ksize=2, strides=2),
  1052. 'desc_inputs': [[128, 32, 32, 64]],
  1053. 'desc_bprop': [[128, 32, 16, 32], ([128, 32, 4, 33], {'dtype': np.uint16})]}),
  1054. ('SoftmaxCrossEntropyWithLogits', {
  1055. 'block': P.SoftmaxCrossEntropyWithLogits(),
  1056. 'desc_inputs': [[1, 10], [1, 10]],
  1057. 'desc_bprop': [[1], [1, 10]],
  1058. 'skip': ['backward_exec']}),
  1059. ('Flatten', {
  1060. 'block': P.Flatten(),
  1061. 'desc_inputs': [[128, 32, 32, 64]],
  1062. 'desc_bprop': [[128, 65536]]}),
  1063. ('LogSoftmax', {
  1064. 'block': P.LogSoftmax(),
  1065. 'desc_inputs': [[64, 2]],
  1066. 'desc_bprop': [[64, 2]]}),
  1067. ('LogSoftmaxGrad', {
  1068. 'block': G.LogSoftmaxGrad(),
  1069. 'desc_inputs': [[16, 1234], [16, 1234]],
  1070. 'desc_bprop': [[64, 2]],
  1071. 'skip': ['backward']}),
  1072. ('L2Normalize', {
  1073. 'block': P.L2Normalize(),
  1074. 'desc_inputs': [[2, 2]],
  1075. 'desc_bprop': [[2, 2]]}),
  1076. ('L2NormalizeGrad', {
  1077. 'block': G.L2NormalizeGrad(),
  1078. 'desc_inputs': [[2, 2], [2, 2], [2, 2]],
  1079. 'desc_bprop': [[2, 2]],
  1080. 'skip': ['backward']}),
  1081. ('LayerNorm', {
  1082. 'block': P.LayerNorm(),
  1083. 'desc_inputs': [[2, 16], [16], [16]],
  1084. 'desc_bprop': [[2, 16], [2, 1], [2, 1]]}),
  1085. ('LayerNormGrad', {
  1086. 'block': G.LayerNormGrad(),
  1087. 'desc_inputs': [[2, 16], [2, 16], [2, 16], [2, 16], [16]],
  1088. 'desc_bprop': [[2, 16], [16], [16]],
  1089. 'skip': ['backward']}),
  1090. ('FusedBatchNorm', {
  1091. 'block': P.FusedBatchNorm(),
  1092. 'desc_inputs': [[128, 64, 32, 64], [64], [64], [64], [64]],
  1093. 'desc_bprop': [[128, 64, 32, 64], [64], [64], [64], [64]],
  1094. 'skip': []}),
  1095. ('FusedBatchNormGrad', {
  1096. 'block': G.FusedBatchNormGrad(),
  1097. 'desc_inputs': [[128, 64, 32, 64], [128, 64, 32, 64], [64], [64], [64]],
  1098. 'desc_bprop': [[128, 64, 32, 64], [64], [64], [64], [64]],
  1099. 'skip': ['backward']}),
  1100. ('BatchNorm', {
  1101. 'block': P.BatchNorm(),
  1102. 'desc_inputs': [[128, 64, 32, 32], [64], [64], [64], [64]],
  1103. 'desc_bprop': [[128, 64, 32, 32], [64], [64], [64], [64]],
  1104. 'skip': []}),
  1105. ('BatchNormGrad', {
  1106. 'block': G.BatchNormGrad(),
  1107. 'desc_inputs': [[128, 64, 32, 32], [128, 64, 32, 32], [64], [64], [64]],
  1108. 'desc_bprop': [[128, 64, 32, 32], [64], [64], [64], [64]],
  1109. 'skip': ['backward']}),
  1110. ('BasicLSTMCell', {
  1111. 'block': P.BasicLSTMCell(keep_prob=1.0, forget_bias=1.0, state_is_tuple=True, activation='tanh'),
  1112. 'desc_inputs': [[128, 128], [128, 128], [128, 128], [512, 256, 1, 1], [512, 1, 1, 1]],
  1113. 'desc_bprop': [[128, 128], [128, 128], [128, 128], [128, 128], [128, 128], [128, 128], [128, 128]],
  1114. 'skip': []}),
  1115. ('TopK', {
  1116. 'block': P.TopK(),
  1117. 'desc_const': [5],
  1118. 'desc_inputs': [[20, 20, 10]],
  1119. 'desc_bprop': [[20, 20, 5]],
  1120. 'skip': ['backward']}),
  1121. ('GatherV2_0', {
  1122. 'block': P.GatherV2(),
  1123. 'desc_const': [0],
  1124. 'desc_inputs': [[3, 1, 2], Tensor(np.array([0, 1]).astype(np.int32))],
  1125. 'desc_bprop': [[2, 1, 2]]}),
  1126. ('GatherV2_1', {
  1127. 'block': P.GatherV2(),
  1128. 'desc_const': [2],
  1129. 'desc_inputs': [[3, 1, 3], Tensor(np.array([0, 1]).astype(np.int32))],
  1130. 'desc_bprop': [[3, 1, 2]]}),
  1131. ('GatherV2_2', {
  1132. 'block': P.GatherV2(),
  1133. 'desc_const': [0],
  1134. 'desc_inputs': [[3, 1, 3], Tensor(np.array([[0, 1], [0, 1], [0, 1]]).astype(np.int32))],
  1135. 'desc_bprop': [[3, 2, 1, 3]]}),
  1136. ('GatherV2_3', {
  1137. 'block': P.GatherV2(),
  1138. 'desc_const': [2],
  1139. 'desc_inputs': [[3, 1, 3], Tensor(np.array([[0, 1], [0, 1], [0, 1]]).astype(np.int32))],
  1140. 'desc_bprop': [[3, 1, 3, 2]]}),
  1141. ('GatherV2_4', {
  1142. 'block': P.GatherV2(),
  1143. 'desc_const': [1],
  1144. 'desc_inputs': [[32, 5, 1024], Tensor(np.array([3]).astype(np.int32))],
  1145. 'desc_bprop': [[32, 1, 1024]]}),
  1146. ('GatherV2_5', {
  1147. 'block': P.GatherV2(),
  1148. 'desc_const': [-1],
  1149. 'desc_inputs': [[3, 1, 3], Tensor(np.array([0, 1]).astype(np.int32))],
  1150. 'desc_bprop': [[3, 1, 2]]}),
  1151. ('GatherV2_6', {
  1152. 'block': P.GatherV2(),
  1153. 'desc_const': [0],
  1154. 'desc_inputs': [[1152], Tensor(np.array(10).astype(np.int32))],
  1155. 'desc_bprop': [Tensor(np.array(10).astype(np.float32))]}),
  1156. ('SparseGatherV2_0', {
  1157. 'block': P.SparseGatherV2(),
  1158. 'desc_const': [0],
  1159. 'desc_inputs': [[3, 1, 2], Tensor(np.array([0, 1]).astype(np.int32))],
  1160. 'desc_bprop': [[2, 1, 2]]}),
  1161. ('Range', {
  1162. 'block': inner.Range(1.0, 5.0),
  1163. 'desc_inputs': [Tensor(np.ones([10]).astype(np.float32))],
  1164. 'desc_bprop': [[10]]}),
  1165. ('UnsortedSegmentSum', {
  1166. 'block': P.UnsortedSegmentSum(),
  1167. 'desc_const': [1280],
  1168. 'desc_inputs': [[1280, 1024], Tensor(np.ones(1280).astype(np.int32))],
  1169. 'desc_bprop': [[8192, 1024]],
  1170. 'skip': ['backward']}),
  1171. ('UnsortedSegmentSum_1', {
  1172. 'block': P.UnsortedSegmentSum(),
  1173. 'desc_const': [4],
  1174. 'desc_inputs': [[3, 2, 1, 3], Tensor(np.array([[0, 1], [0, 1], [0, 1]]).astype(np.int32))],
  1175. 'desc_bprop': [[4, 1, 3]],
  1176. 'skip': ['backward']}),
  1177. ('UnsortedSegmentMin', {
  1178. 'block': P.UnsortedSegmentMin(),
  1179. 'desc_const': [4],
  1180. 'desc_inputs': [[3, 2, 1, 3], Tensor(np.array([1, 2, 3]).astype(np.int32))],
  1181. 'desc_bprop': [[4, 2, 1, 3]]}),
  1182. ('UnsortedSegmentProd', {
  1183. 'block': P.UnsortedSegmentProd(),
  1184. 'desc_const': [4],
  1185. 'desc_inputs': [[3, 2, 1, 3], Tensor(np.array([0, 1, 0]).astype(np.int32))],
  1186. 'desc_bprop': [[4, 2, 1, 3]]}),
  1187. ('DropoutGenMask', {
  1188. 'block': P.DropoutGenMask(),
  1189. 'desc_const': [(2, 2), Tensor(0.5, mstype.float32)],
  1190. 'desc_inputs': [],
  1191. 'desc_bprop': [Tensor(np.ones(1).astype(np.int8))],
  1192. 'skip': ['backward']}),
  1193. ('DropoutDoMask', {
  1194. 'block': P.DropoutDoMask(),
  1195. 'desc_const': [Tensor(0.5)],
  1196. 'desc_inputs': [[64, 12, 128, 128], Tensor(np.ones(1572864).astype(np.uint8))],
  1197. 'desc_bprop': [[64, 12, 128, 128]]}),
  1198. ('Dropout', {
  1199. 'block': nn.Dropout(0.5),
  1200. 'desc_inputs': [[64, 12, 128, 128]],
  1201. 'desc_bprop': [[64, 12, 128, 128]]}),
  1202. ('ReduceMean0', {
  1203. 'block': P.ReduceMean(),
  1204. 'desc_const': [(2,)],
  1205. 'desc_inputs': [[3, 2, 2]],
  1206. 'desc_bprop': [[3, 2]]}),
  1207. ('ReduceMean1', {
  1208. 'block': P.ReduceMean(),
  1209. 'desc_const': [2],
  1210. 'desc_inputs': [[3, 2, 2]],
  1211. 'desc_bprop': [[3, 2]]}),
  1212. ('All', {
  1213. 'block': P.ReduceAll(),
  1214. 'desc_const': [(1,)],
  1215. 'desc_inputs': [Tensor(np.ones([3, 2]).astype(np.bool_))],
  1216. 'desc_bprop': [[3]],
  1217. 'skip': ['backward']}),
  1218. ('DescConst', {
  1219. 'block': Tensor(np.array([2], np.float32)),
  1220. 'desc_inputs': [],
  1221. 'desc_bprop': [[1]],
  1222. 'skip': ['backward'],
  1223. 'add_fake_input': True}),
  1224. ('Fill', {
  1225. 'block': P.Fill(),
  1226. 'desc_const': [mstype.float32, (2, 3), 1.0],
  1227. 'desc_inputs': [],
  1228. 'desc_bprop': [[2, 3]],
  1229. 'skip': ['backward'],
  1230. 'add_fake_input': True}),
  1231. ('OnesLike', {
  1232. 'block': P.OnesLike(),
  1233. 'desc_inputs': [Tensor(np.array([[0, 1], [2, 1]]).astype(np.int32))],
  1234. 'desc_bprop': [Tensor(np.array([[1, 1], [1, 1]]).astype(np.int32))]
  1235. }),
  1236. ('ZerosLike', {
  1237. 'block': P.ZerosLike(),
  1238. 'desc_inputs': [Tensor(np.array([[0, 1], [2, 1]]).astype(np.int32))],
  1239. 'desc_bprop': [Tensor(np.array([[1, 1], [1, 1]]).astype(np.int32))]
  1240. }),
  1241. ('Softmax', {
  1242. 'block': P.Softmax(),
  1243. 'desc_inputs': [[5, 5]],
  1244. 'desc_bprop': [[5, 5]]}),
  1245. ('Softsign', {
  1246. 'block': P.Softsign(),
  1247. 'desc_inputs': [[5, 5]],
  1248. 'desc_bprop': [[5, 5]]}),
  1249. ('DepthwiseConv2dNative_1', {
  1250. 'block': P.DepthwiseConv2dNative(3, (3, 3), pad_mode="pad", pad=1, stride=2),
  1251. 'desc_inputs': [[10, 32, 32, 32], [1, 32, 3, 3]],
  1252. 'desc_bprop': [[10, 32, 16, 16]]}),
  1253. ('DepthwiseConv2dNative_2', {
  1254. 'block': P.DepthwiseConv2dNative(1, (3, 3), pad_mode="same", pad=0, stride=1),
  1255. 'desc_inputs': [[2592, 2048, 4, 4], [1, 2048, 3, 3]],
  1256. 'desc_bprop': [[2592, 2048, 4, 4]]}),
  1257. ('SigmoidCrossEntropyWithLogits', {
  1258. 'block': P.SigmoidCrossEntropyWithLogits(),
  1259. 'desc_inputs': [[128, 10], [128, 10]],
  1260. 'desc_bprop': [[128, 10]]}),
  1261. ('Pad', {
  1262. 'block': P.Pad(((1, 2), (2, 3))),
  1263. 'desc_inputs': [[7, 7]],
  1264. 'desc_bprop': [[10, 12]]}),
  1265. ('BinaryCrossEntropy', {
  1266. 'block': P.BinaryCrossEntropy(),
  1267. 'desc_inputs': [[1, 2, 3], [1, 2, 3], [1, 2, 3]],
  1268. 'desc_bprop': []}),
  1269. ('SparseApplyAdagrad', {
  1270. 'block': SparseApplyAdagradNet(),
  1271. 'desc_inputs': [[3, 3], Tensor(np.ones((3,), np.int32))],
  1272. 'desc_bprop': [[3, 3], [3, 3]],
  1273. 'skip': ['backward']}),
  1274. ('SparseApplyAdagradV2', {
  1275. 'block': SparseApplyAdagradV2Net(),
  1276. 'desc_inputs': [[3, 3], Tensor(np.ones((3,), np.int32))],
  1277. 'skip': ['backward']}),
  1278. ('SparseApplyFtrl', {
  1279. 'block': SparseApplyFtrlNet(),
  1280. 'desc_inputs': [[3, 3], Tensor(np.ones((3,), np.int32))],
  1281. 'skip': ['backward']}),
  1282. ('SparseApplyFtrlV2', {
  1283. 'block': SparseApplyFtrlV2Net(),
  1284. 'desc_inputs': [[3, 3], Tensor(np.ones((3,), np.int32))],
  1285. 'skip': ['backward']}),
  1286. ('ApplyProximalAdagrad', {
  1287. 'block': ApplyProximalAdagradNet(),
  1288. 'desc_inputs': [[3, 3]],
  1289. 'skip': ['backward']}),
  1290. ('SparseApplyProximalAdagrad', {
  1291. 'block': SparseApplyProximalAdagradNet(),
  1292. 'desc_inputs': [[3, 3], Tensor(np.ones((3,), np.int32))],
  1293. 'skip': ['backward']}),
  1294. ('ApplyAdaMax', {
  1295. 'block': ApplyAdaMaxNet(),
  1296. 'desc_inputs': [[3, 3]],
  1297. 'skip': ['backward']}),
  1298. ('ApplyAdadelta', {
  1299. 'block': ApplyAdadeltaNet(),
  1300. 'desc_inputs': [[3, 3]],
  1301. 'skip': ['backward']}),
  1302. ('ApplyAdagrad', {
  1303. 'block': ApplyAdagradNet(),
  1304. 'desc_inputs': [[3, 3]],
  1305. 'skip': ['backward']}),
  1306. ('ApplyAdagradV2', {
  1307. 'block': ApplyAdagradV2Net(),
  1308. 'desc_inputs': [[3, 3]],
  1309. 'skip': ['backward']}),
  1310. ('ApplyAddSign', {
  1311. 'block': ApplyAddSignNet(),
  1312. 'desc_inputs': [[3, 3]],
  1313. 'skip': ['backward']}),
  1314. ('ApplyPowerSign', {
  1315. 'block': ApplyPowerSignNet(),
  1316. 'desc_inputs': [[3, 3]],
  1317. 'skip': ['backward']}),
  1318. ('ApplyGradientDescent', {
  1319. 'block': ApplyGradientDescentNet(),
  1320. 'desc_inputs': [[3, 3]],
  1321. 'skip': ['backward']}),
  1322. ('ApplyProximalGradientDescent', {
  1323. 'block': ApplyProximalGradientDescentNet(),
  1324. 'desc_inputs': [[3, 3]],
  1325. 'skip': ['backward']}),
  1326. ('Flatten_1', {
  1327. 'block': NetForFlatten(),
  1328. 'desc_inputs': [Tensor(np.ones([2, 3, 4]).astype(np.int32)), Tensor(np.ones([2, 12]).astype(np.int32))],
  1329. 'desc_bprop': [Tensor(np.ones([2, 12]).astype(np.int32))],
  1330. 'skip': ['backward']}),
  1331. ('Flatten_2', {
  1332. 'block': NetForFlatten(),
  1333. 'desc_inputs': [Tensor(np.ones([8]).astype(np.int32)), Tensor(np.ones([8, 3]).astype(np.int32))],
  1334. 'desc_bprop': [Tensor(np.ones([8, 3]).astype(np.int32))],
  1335. 'skip': ['backward']}),
  1336. ('Flatten_3', {
  1337. 'block': NetForFlattenComposed(),
  1338. 'desc_inputs': [Tensor(np.ones([2, 3, 4]).astype(np.int32)), Tensor(np.ones([2, 12]).astype(np.int32))],
  1339. 'desc_bprop': [Tensor(np.ones([2, 12]).astype(np.int32))],
  1340. 'skip': []}),
  1341. ('ArgmaxNet', {
  1342. 'block': ArgmaxNet(),
  1343. 'desc_inputs': [Tensor(np.array([[128, 32, 32, 64], [128, 32, 32, 64]]).astype(np.float16))],
  1344. 'desc_bprop': [Tensor(np.array([[128, 32, 32, 64], [128, 32, 32, 64]]).astype(np.float16))],
  1345. 'skip': ['backward']}),
  1346. ('ArgminNet', {
  1347. 'block': ArgminNet(),
  1348. 'desc_inputs': [Tensor(np.array([[128, 32, 32, 64], [128, 32, 32, 64]]).astype(np.float16))],
  1349. 'desc_bprop': [Tensor(np.array([[128, 32, 32, 64], [128, 32, 32, 64]]).astype(np.float16))],
  1350. 'skip': ['backward']}),
  1351. ('StridedSliceNet', {
  1352. 'block': StridedSliceNet(),
  1353. 'desc_inputs': [[6, 7, 8, 9, 10]],
  1354. 'skip': ['backward']}),
  1355. ('OneHot', {
  1356. 'block': P.OneHot(),
  1357. 'desc_const': [3, Tensor(1.0, mstype.float32), Tensor(0.0, mstype.float32)],
  1358. 'desc_inputs': [Tensor(np.array([64]).astype(np.int32))],
  1359. 'desc_bprop': [[1, 3]]}),
  1360. ('ReduceProd_0', {
  1361. 'block': P.ReduceProd(),
  1362. 'desc_const': [0],
  1363. 'desc_inputs': [[3, 2]],
  1364. 'desc_bprop': [[2]]}),
  1365. ('ReduceProd_1', {
  1366. 'block': P.ReduceProd(keep_dims=True),
  1367. 'desc_const': [0],
  1368. 'desc_inputs': [[3, 2]],
  1369. 'desc_bprop': [[1, 2]]}),
  1370. ('CumProd', {
  1371. 'block': P.CumProd(),
  1372. 'desc_const': [0],
  1373. 'desc_inputs': [[3, 2]],
  1374. 'desc_bprop': [[3, 2]]}),
  1375. ('ApplyFtrl', {
  1376. 'block': ApplyFtrlNet(),
  1377. 'desc_inputs': [[3, 3]],
  1378. 'desc_bprop': [3, 3],
  1379. 'skip': ['backward']}),
  1380. ('ApplyRMSProp', {
  1381. 'block': ApplyRMSNet(),
  1382. 'desc_inputs': [[3, 3]],
  1383. 'desc_bprop': [3, 3],
  1384. 'skip': ['backward']}),
  1385. ('ApplyCenteredRMSProp', {
  1386. 'block': P.ApplyCenteredRMSProp(),
  1387. 'desc_const': [0.9, 0.0, 1e-10, 0.001],
  1388. 'desc_inputs': [Tensor(1., mstype.float32), Tensor(2., mstype.float32), Tensor(1., mstype.float32),
  1389. Tensor(2., mstype.float32), Tensor(1., mstype.float32)],
  1390. 'desc_bprop': [1],
  1391. 'skip': ['backward']}),
  1392. ('CTCLoss', {
  1393. 'block': P.CTCLoss(),
  1394. 'desc_inputs': [Tensor(np.ones([6, 4, 6]).astype(np.float32)),
  1395. Tensor(np.array([[0, 1], [1, 0], [2, 3], [3, 2]]).astype(np.int64)),
  1396. Tensor(np.array([1, 2, 3, 4]).astype(np.int32)),
  1397. Tensor(np.array([6, 6, 6, 6]).astype(np.int32))],
  1398. 'desc_bprop': [[4], [6, 4, 6]]}),
  1399. ('L2Loss_1', {
  1400. 'block': P.L2Loss(),
  1401. 'desc_inputs': [Tensor(np.array([1, 2, 3, 4]), mstype.float32)],
  1402. 'desc_bprop': []}),
  1403. ('L2Loss_2', {
  1404. 'block': P.L2Loss(),
  1405. 'desc_inputs': [Tensor(np.array([[1, 1], [2, 2], [3, 3], [4, 4]]), mstype.float16)],
  1406. 'desc_bprop': []}),
  1407. ('ResizeBilinear', {
  1408. 'block': P.ResizeBilinear((5, 5)),
  1409. 'desc_inputs': [Tensor([[[[1, 2, 3, 4, 5], [1, 2, 3, 4, 5]]]], mstype.float16)],
  1410. 'desc_bprop': [Tensor([[[[1, 2, 3, 4, 5], [1, 2, 3, 4, 5]]]], mstype.float16)]}),
  1411. ('ResizeBilinearGrad', {
  1412. 'block': G.ResizeBilinearGrad(),
  1413. 'desc_inputs': [Tensor([[[[1, 2, 3, 4, 5]]]], mstype.float32), Tensor([[[[1, 2, 3, 4, 5]]]], mstype.float32)],
  1414. 'desc_bprop': [Tensor([[[[1, 2, 3, 4, 5]]]], mstype.float32)],
  1415. 'skip': ['backward']}),
  1416. ('ROIAlign', {
  1417. 'block': P.ROIAlign(7, 7, 0.03125, 2),
  1418. 'desc_inputs': [[2, 256, 192, 320], [1024, 5]],
  1419. 'desc_bprop': [[7, 7]]}),
  1420. ('ROIAlignGrad', {
  1421. 'block': G.ROIAlignGrad((1, 1, 1, 1), 2, 2, 0.5, 2),
  1422. 'desc_inputs': [[1, 1, 2, 2], [1, 5]],
  1423. 'desc_bprop': [[1, 1, 2, 2]],
  1424. 'skip': ['backward']}),
  1425. ('LARSUpdate', {
  1426. 'block': P.LARSUpdate(1e-05, 0.001, False),
  1427. 'desc_const': [0.0, 0.001],
  1428. 'desc_inputs': [[3, 3], [3, 3], [3, 3], [3, 3]],
  1429. 'desc_bprop': [3, 3],
  1430. 'skip': ['backward']}),
  1431. ('SGD', {
  1432. 'block': P.SGD(0.0, 0.0, False),
  1433. 'desc_inputs': [[3, 3], [3, 3], Tensor(0.001, mstype.float32), [3, 3], Tensor(0.1, mstype.float32), [3, 3]],
  1434. 'desc_bprop': [3, 3],
  1435. 'skip': ['backward']}),
  1436. ('BinaryCrossEntropy', {
  1437. 'block': P.BinaryCrossEntropy(),
  1438. 'desc_inputs': [Tensor([[0.3, 0.8], [0.4, 0.3]], mstype.float16),
  1439. Tensor([[0.4, 1.2], [-0.4, -0.9]], mstype.float16),
  1440. Tensor([[-1.4, -0.7], [0.9, 0.7]], mstype.float16)],
  1441. 'desc_bprop': []}),
  1442. ('BinaryCrossEntropyGrad', {
  1443. 'block': G.BinaryCrossEntropyGrad(),
  1444. 'desc_inputs': [Tensor([[0.3, 0.8], [0.4, 0.3]], mstype.float16),
  1445. Tensor([[0.4, 1.2], [-0.4, -0.9]], mstype.float16), Tensor(0.85, mstype.float16),
  1446. Tensor([[-1.4, -0.7], [0.9, 0.7]], mstype.float16)],
  1447. 'desc_bprop': [],
  1448. 'skip': ['backward']}),
  1449. ('DataFormatDimMap', {
  1450. 'block': P.DataFormatDimMap(),
  1451. 'desc_inputs': [Tensor([0, 1, 2, 3], mstype.int32)],
  1452. 'desc_bprop': [],
  1453. 'skip': ['backward']}),
  1454. ('MaxPoolGradGrad', {
  1455. 'block': G.MaxPoolGradGrad(),
  1456. 'desc_inputs': [Tensor(np.random.rand(1, 1, 2, 2), mstype.float16),
  1457. Tensor(np.random.rand(1, 1, 2, 2), mstype.float16),
  1458. Tensor(np.random.rand(1, 1, 2, 2), mstype.float16)],
  1459. 'desc_bprop': [],
  1460. 'skip': ['backward']}),
  1461. ('MaxPoolGradGradWithArgmax', {
  1462. 'block': G.MaxPoolGradGradWithArgmax(),
  1463. 'desc_inputs': [Tensor(np.random.rand(1, 1, 2, 2), mstype.float16),
  1464. Tensor(np.random.rand(1, 1, 2, 2), mstype.float16),
  1465. Tensor(np.zeros((1, 1, 2, 2)), mstype.uint16)],
  1466. 'desc_bprop': [],
  1467. 'skip': ['backward']}),
  1468. ]
  1469. test_case_array_ops = [
  1470. ('SpaceToDepth', {
  1471. 'block': P.SpaceToDepth(2),
  1472. 'desc_inputs': [[1, 3, 2, 2]],
  1473. 'desc_bprop': [[1, 12, 1, 1]]}),
  1474. ('DepthToSpace', {
  1475. 'block': P.DepthToSpace(2),
  1476. 'desc_inputs': [[1, 12, 1, 1]],
  1477. 'desc_bprop': [[1, 3, 2, 2]]}),
  1478. ('Split', {
  1479. 'block': P.Split(1, 2),
  1480. 'desc_inputs': [Tensor(np.array([[1, 1, 1, 1], [2, 2, 2, 2]]))],
  1481. 'skip': ['backward']}),
  1482. ('Argmax', {
  1483. 'block': P.Argmax(),
  1484. 'desc_inputs': [[128, 32, 32, 64]],
  1485. 'desc_bprop': [0],
  1486. 'skip': ['backward']}),
  1487. ('Argmin', {
  1488. 'block': P.Argmin(),
  1489. 'desc_inputs': [[128, 32, 32, 64]],
  1490. 'desc_bprop': [1],
  1491. 'skip': ['backward']}),
  1492. ('ArgMaxWithValue', {
  1493. 'block': P.ArgMaxWithValue(),
  1494. 'desc_inputs': [[128, 32, 32, 64]],
  1495. 'desc_bprop': [[1], [1]],
  1496. 'skip': ['backward']}),
  1497. ('ArgMinWithValue', {
  1498. 'block': P.ArgMinWithValue(),
  1499. 'desc_inputs': [[128, 32, 32, 64]],
  1500. 'desc_bprop': [[1], [1]],
  1501. 'skip': ['backward']}),
  1502. ('Transpose_dim3', {
  1503. 'block': P.Transpose(),
  1504. 'desc_const': [(0, 2, 1)],
  1505. 'desc_inputs': [[1, 2, 3]],
  1506. 'desc_bprop': [[1, 3, 2]]}),
  1507. ('Transpose_dim4', {
  1508. 'block': P.Transpose(),
  1509. 'desc_const': [(0, 1, 2, 3)],
  1510. 'desc_inputs': [[1, 2, 3, 4]],
  1511. 'desc_bprop': [[1, 2, 4, 3]]}),
  1512. ('AddN', {
  1513. 'block': NetForTupleInput(P.AddN()),
  1514. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5]],
  1515. 'desc_bprop': [[2, 3, 3, 5]],
  1516. 'skip': ['backward']}),
  1517. ('AccumulateNV2', {
  1518. 'block': NetForTupleInput(P.AccumulateNV2()),
  1519. 'desc_inputs': [[2, 3, 3, 5], [2, 3, 3, 5]],
  1520. 'desc_bprop': [[2, 3, 3, 5]],
  1521. 'skip': ['backward']}),
  1522. ('Shape', {
  1523. 'block': P.Shape(),
  1524. 'desc_inputs': [[3, 3, 2, 2]],
  1525. 'skip': ['backward']}),
  1526. ('Reshape', {
  1527. 'block': P.Reshape(),
  1528. 'desc_const': [(64,)],
  1529. 'desc_inputs': [[64, 1]],
  1530. 'desc_bprop': [[64]]}),
  1531. ('Cast', {
  1532. 'block': P.Cast(),
  1533. 'desc_const': [mstype.int32],
  1534. 'desc_inputs': [[2, 3, 4, 5]],
  1535. 'desc_bprop': [Tensor(np.ones((2, 3, 4, 5)).astype(np.int32))]}),
  1536. ('ExpandDims', {
  1537. 'block': P.ExpandDims(),
  1538. 'desc_const': [0],
  1539. 'desc_inputs': [[2, 2]],
  1540. 'desc_bprop': [[1, 2, 2]]}),
  1541. ('ExpandDims_1', {
  1542. 'block': P.ExpandDims(),
  1543. 'desc_const': [-1],
  1544. 'desc_inputs': [[2, 2]],
  1545. 'desc_bprop': [[2, 2, 1]]}),
  1546. ('Squeeze', {
  1547. 'block': P.Squeeze(2),
  1548. 'desc_inputs': [[3, 2, 1]],
  1549. 'desc_bprop': [[3, 2]]}),
  1550. ('Squeeze_0', {
  1551. 'block': P.Squeeze(),
  1552. 'desc_inputs': [[3, 1, 2, 1]],
  1553. 'desc_bprop': [[3, 2]]}),
  1554. ('Squeeze_1', {
  1555. 'block': P.Squeeze(),
  1556. 'desc_inputs': [[1, 1, 1, 1]],
  1557. 'desc_bprop': [1.0],
  1558. 'skip': ['backward']}),
  1559. ('Squeeze_2', {
  1560. 'block': P.Squeeze((2, 3)),
  1561. 'desc_inputs': [[3, 2, 1, 1]],
  1562. 'desc_bprop': [[3, 2]]}),
  1563. ('Size', {
  1564. 'block': P.Size(),
  1565. 'desc_inputs': [[2, 3, 5]],
  1566. 'skip': ['backward']}),
  1567. ('Tile_0', {
  1568. 'block': P.Tile(),
  1569. 'desc_const': [(1, 2)],
  1570. 'desc_inputs': [[64, 1]],
  1571. 'desc_bprop': [[64, 2]]}),
  1572. ('Tile_1', {
  1573. 'block': P.Tile(),
  1574. 'desc_const': [(1, 1)],
  1575. 'desc_inputs': [[64, 1]],
  1576. 'desc_bprop': [[64, 1]]}),
  1577. ('Tile_2', {
  1578. 'block': P.Tile(),
  1579. 'desc_const': [(2, 1, 1, 2)],
  1580. 'desc_inputs': [[2, 2, 2]],
  1581. 'desc_bprop': [[2, 2, 2, 4]]}),
  1582. ('ConcatV2_0', {
  1583. 'block': P.Concat(),
  1584. 'desc_inputs': [
  1585. (Tensor(np.array([[0, 1], [2, 1]]).astype(np.int32)),
  1586. Tensor(np.array([[0, 1], [2, 1]]).astype(np.int32)))],
  1587. 'desc_bprop': [([4, 2], {'dtype': np.int32})]}),
  1588. ('ConcatV2_1', {
  1589. 'block': P.Concat(axis=2),
  1590. 'desc_inputs': [(Tensor(np.array([[[0, 1, 2]], [[2, 1, 2]]]).astype(np.int32)),
  1591. Tensor(np.array([[[0, 1]], [[2, 1]]]).astype(np.int32)))],
  1592. 'desc_bprop': [([2, 1, 5], {'dtype': np.int32})]}),
  1593. ('ConcatV2_2', {
  1594. 'block': NetForConcat(),
  1595. 'desc_inputs': [[2, 2]],
  1596. 'desc_bprop': [[4, 2]]}),
  1597. ('ConcatV2_3', {
  1598. 'block': NetForConcat1(),
  1599. 'desc_inputs': [[2, 2], [2, 2]],
  1600. 'desc_bprop': [[4, 2]]}),
  1601. ('ConcatV2_4', {
  1602. 'block': P.Concat(axis=0),
  1603. 'desc_inputs': [
  1604. (Tensor(np.ones((3, 2, 3), np.float32)),
  1605. Tensor(np.ones((5, 2, 3), np.float32)),
  1606. Tensor(np.ones((6, 2, 3), np.float32)))],
  1607. 'desc_bprop': [[14, 2, 3]]}),
  1608. ('ConcatV2_5', {
  1609. 'block': P.Concat(axis=-1),
  1610. 'desc_inputs': [(Tensor(np.array([1], np.float32)),
  1611. Tensor(np.array([1], np.float32)),
  1612. Tensor(np.array([1], np.float32)))],
  1613. 'desc_bprop': [[3, ]]}),
  1614. ('Pack_0', {
  1615. 'block': NetForPackInput(P.Pack()),
  1616. 'desc_inputs': [[2, 2], [2, 2], [2, 2]],
  1617. 'desc_bprop': [[3, 2, 2]],
  1618. }),
  1619. ('Pack_1', {
  1620. 'block': NetForPackInput(P.Pack(axis=-2)),
  1621. 'desc_inputs': [[3, 2, 3], [3, 2, 3], [3, 2, 3]],
  1622. 'desc_bprop': [[3, 2, 3, 3]],
  1623. }),
  1624. ('Pack_2', {
  1625. 'block': NetForPackInput(P.Pack()),
  1626. 'desc_inputs': [[128, 128], [128, 128]],
  1627. 'desc_bprop': [[2, 128, 128]],
  1628. }),
  1629. ('Pack_3', {
  1630. 'block': NetForPackInput(P.Pack()),
  1631. 'desc_inputs': [[2, 2]],
  1632. 'desc_bprop': [[1, 2, 2]]}),
  1633. ('Unpack_0', {
  1634. 'block': NetForUnpackInput(P.Unpack(axis=0)),
  1635. 'desc_inputs': [[2, 4]],
  1636. 'desc_bprop': [[4], [4]],
  1637. }),
  1638. ('Unpack_1', {
  1639. 'block': NetForUnpackInput(P.Unpack(axis=-1)),
  1640. 'desc_inputs': [Tensor(np.array([[1, 1, 1]], np.float32))],
  1641. 'desc_bprop': [[1], [1], [1]],
  1642. }),
  1643. ('Diag_1', {
  1644. 'block': P.Diag(),
  1645. 'desc_inputs': [[4]],
  1646. 'desc_bprop': [[4, 4]],
  1647. }),
  1648. ('Diag_2', {
  1649. 'block': P.Diag(),
  1650. 'desc_inputs': [[4, 4]],
  1651. 'desc_bprop': [[4, 4, 4, 4]],
  1652. }),
  1653. ('DiagPart_1', {
  1654. 'block': P.DiagPart(),
  1655. 'desc_inputs': [[4, 4]],
  1656. 'desc_bprop': [[4]],
  1657. }),
  1658. ('DiagPart_2', {
  1659. 'block': P.DiagPart(),
  1660. 'desc_inputs': [[4, 4, 4, 4]],
  1661. 'desc_bprop': [[4, 4]],
  1662. }),
  1663. ('SpaceToBatch_1', {
  1664. 'block': P.SpaceToBatch(2, [[0, 0], [0, 0]]),
  1665. 'desc_inputs': [[1, 3, 2, 2]],
  1666. 'desc_bprop': [[4, 3, 1, 1]],
  1667. }),
  1668. ('SpaceToBatch_2', {
  1669. 'block': P.SpaceToBatch(2, [[1, 1], [0, 4]]),
  1670. 'desc_inputs': [[1, 3, 2, 2]],
  1671. 'desc_bprop': [[4, 3, 2, 3]],
  1672. }),
  1673. ('BatchToSpace_1', {
  1674. 'block': P.BatchToSpace(2, [[0, 0], [0, 0]]),
  1675. 'desc_inputs': [[4, 3, 1, 1]],
  1676. 'desc_bprop': [[1, 3, 2, 2]],
  1677. }),
  1678. ('BatchToSpace_2', {
  1679. 'block': P.BatchToSpace(2, [[0, 0], [0, 1]]),
  1680. 'desc_inputs': [[4, 3, 1, 1]],
  1681. 'desc_bprop': [[1, 3, 2, 1]],
  1682. }),
  1683. ('UnsortedSegmentMin_1', {
  1684. 'block': P.UnsortedSegmentMin(),
  1685. 'desc_const': [2],
  1686. 'desc_inputs': [Tensor(np.array([[1, 2, 3], [4, 5, 6], [4, 2, 1]]).astype(np.float32)),
  1687. Tensor(np.array([0, 1, 1]).astype(np.int32))],
  1688. 'desc_bprop': [Tensor(np.array([[1, 2, 3], [4, 2, 1]]).astype(np.float32))]}),
  1689. ('BroadcastTo', {
  1690. 'block': P.BroadcastTo((2, 3)),
  1691. 'desc_inputs': [Tensor(np.array([1, 2, 3]).astype(np.float32))],
  1692. 'desc_bprop': [Tensor(np.array([[1, 2, 3], [1, 2, 3]]).astype(np.float32))]}),
  1693. ('InTopK', {
  1694. 'block': P.InTopK(2),
  1695. 'desc_inputs': [Tensor(np.array([[1, 2, 3], [2, 3, 6], [4, 2, 1]]).astype(np.float32)),
  1696. Tensor(np.array([2, 1, 2]).astype(np.int32))],
  1697. 'skip': ['backward'],
  1698. }),
  1699. ('InplaceUpdate', {
  1700. 'block': P.InplaceUpdate((0, 2)),
  1701. 'desc_inputs': [Tensor(np.arange(24).reshape(3, 4, 2).astype(np.float32)),
  1702. Tensor(np.arange(16).reshape(2, 4, 2).astype(np.float32))],
  1703. 'skip': ['backward'],
  1704. }),
  1705. ('ReverseSequence', {
  1706. 'block': P.ReverseSequence(1, 0),
  1707. 'desc_inputs': [Tensor(np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]).astype(np.float32)),
  1708. Tensor(np.array([1, 2, 3]).astype(np.int32))],
  1709. 'desc_bprop': [[3, 3]]}),
  1710. ('LinSpace', {
  1711. 'block': inner.LinSpace(),
  1712. 'desc_inputs': [Tensor([5, 5.5], mstype.float32),
  1713. Tensor(1, mstype.float32),
  1714. Tensor(10, mstype.float32),
  1715. Tensor(5, mstype.int32)],
  1716. 'skip': ['backward'],
  1717. }),
  1718. ('MatrixDiag', {
  1719. 'block': inner.MatrixDiag(),
  1720. 'desc_inputs': [Tensor(np.array([1, -1]), mstype.float32),
  1721. Tensor(np.arange(-12, 0).reshape(3, 2, 2), mstype.float32)],
  1722. 'skip': ['backward'],
  1723. }),
  1724. ('MatrixDiagPart', {
  1725. 'block': inner.MatrixDiagPart(),
  1726. 'desc_inputs': [Tensor(np.arange(12).reshape(3, 2, 2), mstype.float32),
  1727. Tensor(np.arange(-12, 0).reshape(3, 2, 2), mstype.float32)],
  1728. 'skip': ['backward'],
  1729. }),
  1730. ('MatrixSetDiag', {
  1731. 'block': inner.MatrixSetDiag(),
  1732. 'desc_inputs': [Tensor(np.arange(12).reshape(3, 2, 2), mstype.float32),
  1733. Tensor(np.arange(6).reshape(3, 2), mstype.float32),
  1734. Tensor(np.arange(-12, 0).reshape(3, 2, 2), mstype.float32)],
  1735. 'skip': ['backward'],
  1736. }),
  1737. ('TransShape', {
  1738. 'block': P.TransShape(),
  1739. 'desc_const': [(1, 12, 24, 24)],
  1740. 'desc_inputs': [[1, 3, 24, 24]],
  1741. 'desc_bprop': [[1, 12, 24, 24]],
  1742. }),
  1743. ('ParallelConcat', {
  1744. 'block': ParallelConcatNet(),
  1745. 'desc_inputs': [Tensor([[1, 2]], mstype.float32),
  1746. Tensor([[5, 6]], mstype.float32)],
  1747. 'skip': ['backward'],
  1748. }),
  1749. ]
  1750. test_case_other_ops = [
  1751. ('ScalarLog', {
  1752. 'block': F.scalar_log,
  1753. 'desc_const': [0.0],
  1754. 'desc_inputs': [],
  1755. 'desc_bprop': [1],
  1756. 'skip': ['backward']}),
  1757. ('BoundingBoxEncode', {
  1758. 'block': P.BoundingBoxEncode(means=(0.0, 0.0, 0.0, 0.0), stds=(1.0, 1.0, 1.0, 1.0)),
  1759. 'desc_inputs': [[256, 4], [256, 4]],
  1760. 'desc_bprop': [[256, 4]],
  1761. 'skip': ['backward']}),
  1762. ('BoundingBoxDecode', {
  1763. 'block': P.BoundingBoxDecode(means=(0.0, 0.0, 0.0, 0.0), stds=(1.0, 1.0, 1.0, 1.0), max_shape=(768, 1280)),
  1764. 'desc_inputs': [[256, 4], [256, 4]],
  1765. 'desc_bprop': [[256, 4]],
  1766. 'skip': ['backward']}),
  1767. ('GatherNd', {
  1768. 'block': P.GatherNd(),
  1769. 'desc_inputs': (Tensor(np.ones((1, 3, 6, 6), np.float32)),
  1770. Tensor(np.ones((2, 4), np.int32))),
  1771. 'desc_bprop': [[2]]}),
  1772. ('ScatterNd', {
  1773. 'block': P.ScatterNd(),
  1774. 'desc_const': [(3, 3)],
  1775. 'desc_inputs': (Tensor(np.ones((2, 2), np.int32)),
  1776. Tensor(np.ones((2,), np.int32))),
  1777. 'desc_bprop': [([3, 3], {'dtype': np.int32})]}),
  1778. ('TensorScatterUpdate', {
  1779. 'block': P.TensorScatterUpdate(),
  1780. 'desc_inputs': (Tensor(np.arange(3 * 4 * 5).reshape((3, 4, 5)), mstype.float32),
  1781. Tensor(np.array([[0, 1], [1, 2]], np.int32)),
  1782. Tensor(np.ones([2, 5], np.float32) * 99)),
  1783. 'desc_bprop': [([3, 4, 5], {'dtype': np.float32})]}),
  1784. ('ScatterMaxUseLocking', {
  1785. 'block': ScatterMax(use_locking=True),
  1786. 'desc_inputs': (Tensor(np.array([1, 0], np.int32)),
  1787. Tensor(np.array([[5.0, 5.0, 5.0], [4.0, 4.0, 4.0]], np.float32))),
  1788. 'skip': ['backward']}),
  1789. ('ScatterMax1d', {
  1790. 'block': ScatterMax(),
  1791. 'desc_inputs': (Tensor(np.array([1, 0], np.int32)),
  1792. Tensor(np.array([[5.0, 5.0, 5.0], [4.0, 4.0, 4.0]], np.float32))),
  1793. 'skip': ['backward']}),
  1794. ('ScatterMaxF32', {
  1795. 'block': ScatterMax(),
  1796. 'desc_inputs': (Tensor(np.array([[0, 0], [1, 1]], np.int32)),
  1797. Tensor(np.ones([2, 2, 3], np.float32) * 99)),
  1798. 'skip': ['backward']}),
  1799. ('ScatterMaxF16', {
  1800. 'block': ScatterMax(np.float16),
  1801. 'desc_inputs': (Tensor(np.array([[0, 0], [1, 1]], np.int32)),
  1802. Tensor(np.ones([2, 2, 3], np.float16) * 99)),
  1803. 'skip': ['backward']}),
  1804. ('ScatterMaxI32', {
  1805. 'block': ScatterMax(np.int32),
  1806. 'desc_inputs': (Tensor(np.array([[0, 0], [1, 1]], np.int32)),
  1807. Tensor(np.ones([2, 2, 3], np.int32) * 99)),
  1808. 'skip': ['backward']}),
  1809. ('ScatterMinUseLocking', {
  1810. 'block': ScatterMin(use_locking=True),
  1811. 'desc_inputs': (Tensor(np.array([1, 0], np.int32)),
  1812. Tensor(np.ones([2, 3], np.float32))),
  1813. 'skip': ['backward']}),
  1814. ('ScatterMin1d', {
  1815. 'block': ScatterMin(),
  1816. 'desc_inputs': (Tensor(np.array([1, 0], np.int32)),
  1817. Tensor(np.ones([2, 3], np.float32))),
  1818. 'skip': ['backward']}),
  1819. ('ScatterMinF32', {
  1820. 'block': ScatterMin(),
  1821. 'desc_inputs': (Tensor(np.array([[0, 0], [1, 1]], np.int32)),
  1822. Tensor(np.ones([2, 2, 3], np.float32))),
  1823. 'skip': ['backward']}),
  1824. ('ScatterMinF16', {
  1825. 'block': ScatterMin(np.float16),
  1826. 'desc_inputs': (Tensor(np.array([[0, 0], [1, 1]], np.int32)),
  1827. Tensor(np.ones([2, 2, 3], np.float16))),
  1828. 'skip': ['backward']}),
  1829. ('ScatterMinI32', {
  1830. 'block': ScatterMin(np.int32),
  1831. 'desc_inputs': (Tensor(np.array([[0, 0], [1, 1]], np.int32)),
  1832. Tensor(np.ones([2, 2, 3], np.int32))),
  1833. 'skip': ['backward']}),
  1834. ('ScatterUpdate', {
  1835. 'block': ScatterUpdate((6,)),
  1836. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1837. Tensor(np.array([2.0, 3.0, 4.0], np.float32))),
  1838. 'skip': ['backward']}),
  1839. ('ScatterAddUseLocking', {
  1840. 'block': ScatterAdd((6,), use_locking=True),
  1841. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1842. Tensor(np.array([2.0, 3.0, 4.0], np.float32))),
  1843. 'skip': ['backward']}),
  1844. ('ScatterAdd', {
  1845. 'block': ScatterAdd((6,)),
  1846. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1847. Tensor(np.array([2.0, 3.0, 4.0], np.float32))),
  1848. 'skip': ['backward']}),
  1849. ('ScatterAddScalar', {
  1850. 'block': ScatterAdd((6,)),
  1851. 'desc_inputs': (Tensor(np.array([2], np.int32)),
  1852. Tensor(np.array([2.0], np.float32))),
  1853. 'skip': ['backward']}),
  1854. ('ScatterAdd2d', {
  1855. 'block': ScatterAdd((3, 4)),
  1856. 'desc_inputs': (Tensor(np.array([[0, 1], [1, 2]], np.int32)),
  1857. Tensor(np.array([[[1, 1, 1, 1], [2, 2, 2, 2]],
  1858. [[3, 3, 3, 3], [4, 4, 4, 4]]], np.float32))),
  1859. 'skip': ['backward']}),
  1860. ('ScatterAddF16', {
  1861. 'block': ScatterAdd((6,), np.float16),
  1862. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1863. Tensor(np.array([2.0, 3.0, 4.0], np.float16))),
  1864. 'skip': ['backward']}),
  1865. ('ScatterAddI8', {
  1866. 'block': ScatterAdd((6,), np.int8),
  1867. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1868. Tensor(np.array([2, 3, 4], np.int8))),
  1869. 'skip': ['backward']}),
  1870. ('ScatterAddI32', {
  1871. 'block': ScatterAdd((6,), np.int32),
  1872. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1873. Tensor(np.array([2, 3, 4], np.int32))),
  1874. 'skip': ['backward']}),
  1875. ('ScatterAddU8', {
  1876. 'block': ScatterAdd((6,), np.uint8),
  1877. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1878. Tensor(np.array([2, 3, 4], np.uint8))),
  1879. 'skip': ['backward']}),
  1880. ('ScatterMulUseLocking', {
  1881. 'block': ScatterMul((6,), use_locking=True),
  1882. 'desc_inputs': (Tensor(np.array([2], np.int32)),
  1883. Tensor(np.array([2.0], np.float32))),
  1884. 'skip': ['backward']}),
  1885. ('ScatterMulScalar', {
  1886. 'block': ScatterMul((6,)),
  1887. 'desc_inputs': (Tensor(np.array([2], np.int32)),
  1888. Tensor(np.array([2.0], np.float32))),
  1889. 'skip': ['backward']}),
  1890. ('ScatterMul2d', {
  1891. 'block': ScatterMul((3, 4)),
  1892. 'desc_inputs': (Tensor(np.array([[0, 1], [1, 2]], np.int32)),
  1893. Tensor(np.array([[[1, 1, 1, 1], [2, 2, 2, 2]],
  1894. [[3, 3, 3, 3], [4, 4, 4, 4]]], np.float32))),
  1895. 'skip': ['backward']}),
  1896. ('ScatterMulF16', {
  1897. 'block': ScatterMul((6,), np.float16),
  1898. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1899. Tensor(np.array([2.0, 3.0, 4.0], np.float16))),
  1900. 'skip': ['backward']}),
  1901. ('ScatterMulI8', {
  1902. 'block': ScatterMul((6,), np.int8),
  1903. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1904. Tensor(np.array([2, 3, 4], np.int8))),
  1905. 'skip': ['backward']}),
  1906. ('ScatterMulI32', {
  1907. 'block': ScatterMul((6,), np.int32),
  1908. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1909. Tensor(np.array([2, 3, 4], np.int32))),
  1910. 'skip': ['backward']}),
  1911. ('ScatterMulU8', {
  1912. 'block': ScatterMul((6,), np.uint8),
  1913. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1914. Tensor(np.array([2, 3, 4], np.uint8))),
  1915. 'skip': ['backward']}),
  1916. ('ScatterDivUseLocking', {
  1917. 'block': ScatterDiv((6,), use_locking=True),
  1918. 'desc_inputs': (Tensor(np.array([2], np.int32)),
  1919. Tensor(np.array([2.0], np.float32))),
  1920. 'skip': ['backward']}),
  1921. ('ScatterDivScalar', {
  1922. 'block': ScatterDiv((6,)),
  1923. 'desc_inputs': (Tensor(np.array([2], np.int32)),
  1924. Tensor(np.array([2.0], np.float32))),
  1925. 'skip': ['backward']}),
  1926. ('ScatterDiv2d', {
  1927. 'block': ScatterDiv((3, 4)),
  1928. 'desc_inputs': (Tensor(np.array([[0, 1], [1, 2]], np.int32)),
  1929. Tensor(np.array([[[1, 1, 1, 1], [2, 2, 2, 2]],
  1930. [[3, 3, 3, 3], [4, 4, 4, 4]]], np.float32))),
  1931. 'skip': ['backward']}),
  1932. ('ScatterDivF16', {
  1933. 'block': ScatterDiv((6,), np.float16),
  1934. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1935. Tensor(np.array([2.0, 3.0, 4.0], np.float16))),
  1936. 'skip': ['backward']}),
  1937. ('ScatterDivI8', {
  1938. 'block': ScatterDiv((6,), np.int8),
  1939. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1940. Tensor(np.array([2, 3, 4], np.int8))),
  1941. 'skip': ['backward']}),
  1942. ('ScatterDivU8', {
  1943. 'block': ScatterDiv((6,), np.uint8),
  1944. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1945. Tensor(np.array([2, 3, 4], np.uint8))),
  1946. 'skip': ['backward']}),
  1947. ('ScatterSubUseLocking', {
  1948. 'block': ScatterSub((6,), use_locking=True),
  1949. 'desc_inputs': (Tensor(np.array([2], np.int32)),
  1950. Tensor(np.array([2.0], np.float32))),
  1951. 'skip': ['backward']}),
  1952. ('ScatterSubScalar', {
  1953. 'block': ScatterSub((6,)),
  1954. 'desc_inputs': (Tensor(np.array([2], np.int32)),
  1955. Tensor(np.array([2.0], np.float32))),
  1956. 'skip': ['backward']}),
  1957. ('ScatterSub2d', {
  1958. 'block': ScatterSub((3, 4)),
  1959. 'desc_inputs': (Tensor(np.array([[0, 1], [1, 2]], np.int32)),
  1960. Tensor(np.array([[[1, 1, 1, 1], [2, 2, 2, 2]],
  1961. [[3, 3, 3, 3], [4, 4, 4, 4]]], np.float32))),
  1962. 'skip': ['backward']}),
  1963. ('ScatterSubF16', {
  1964. 'block': ScatterSub((6,), np.float16),
  1965. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1966. Tensor(np.array([2.0, 3.0, 4.0], np.float16))),
  1967. 'skip': ['backward']}),
  1968. ('ScatterSubI32', {
  1969. 'block': ScatterSub((6,), np.int32),
  1970. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1971. Tensor(np.array([2, 3, 4], np.int32))),
  1972. 'skip': ['backward']}),
  1973. ('ScatterSubI8', {
  1974. 'block': ScatterSub((6,), np.int8),
  1975. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1976. Tensor(np.array([2, 3, 4], np.int8))),
  1977. 'skip': ['backward']}),
  1978. ('ScatterSubU8', {
  1979. 'block': ScatterSub((6,), np.uint8),
  1980. 'desc_inputs': (Tensor(np.array([2, 0, 5], np.int32)),
  1981. Tensor(np.array([1, 1, 0], np.uint8))),
  1982. 'skip': ['backward']}),
  1983. ('SmoothL1Loss', {
  1984. 'block': P.SmoothL1Loss(),
  1985. 'desc_inputs': [[256, 4], [256, 4]],
  1986. 'desc_bprop': [[256, 4]]}),
  1987. ('IOU', {
  1988. 'block': P.IOU(),
  1989. 'desc_inputs': [Tensor(np.ones((256, 4), np.float16)), Tensor(np.ones((128, 4), np.float16))],
  1990. 'desc_bprop': [[128, 256]]}),
  1991. ('Summary', {
  1992. 'block': SummaryNet(),
  1993. 'desc_inputs': [Tensor(np.array([1.1]).astype(np.float32)),
  1994. Tensor(np.array([1.2]).astype(np.float32))],
  1995. 'skip': ['backward']}),
  1996. ('ConfusionMulGrad_1', {
  1997. 'block': P.ConfusionMulGrad(axis=[0], keep_dims=False),
  1998. 'desc_inputs': [[3, 2], [3, 2], [3, 2]],
  1999. 'desc_bprop': [[3, 2], [2]],
  2000. 'skip': ['backward']}),
  2001. ('ConfusionMulGrad_2', {
  2002. 'block': P.ConfusionMulGrad(axis=[0], keep_dims=True),
  2003. 'desc_inputs': [[3, 2], [3, 2], [3, 2]],
  2004. 'desc_bprop': [[3, 2], [1, 2]],
  2005. 'skip': ['backward']}),
  2006. ('ConfusionMulGrad_3', {
  2007. 'block': P.ConfusionMulGrad(axis=(), keep_dims=True),
  2008. 'desc_inputs': [[2, 3, 4], [2, 3, 4], [2, 3, 4]],
  2009. 'desc_bprop': [[2, 3, 4], [1, 1, 1]],
  2010. 'skip': ['backward']}),
  2011. ('HistogramSummary', {
  2012. 'block': HistogramSummaryNet(),
  2013. 'desc_inputs': [Tensor(np.array([1.1]).astype(np.float32)),
  2014. Tensor(np.array([1.2]).astype(np.float32))],
  2015. 'skip': ['backward']}),
  2016. ('PopulationCount', {
  2017. 'block': P.PopulationCount(),
  2018. 'desc_inputs': [Tensor(np.array([1, 2, 3]).astype(np.int16))],
  2019. 'skip': ['backward']}),
  2020. ]
  2021. test_case_quant_ops = [
  2022. ('AscendQuant_1', {
  2023. 'block': inner.AscendQuant(0.5, 0.0, False, "Round"),
  2024. 'desc_inputs': [Tensor(np.random.rand(1, 2, 4, 4), mstype.float32)],
  2025. 'skip': ['backward']}),
  2026. ('AscendQuant_2', {
  2027. 'block': inner.AscendQuant(80.0, 10.0, True, "Round"),
  2028. 'desc_inputs': [Tensor([100.0, 200.0], mstype.float32)],
  2029. 'skip': ['backward']}),
  2030. ('AscendQuant_3', {
  2031. 'block': inner.AscendQuant(80.0, 0.0, False, "Floor"),
  2032. 'desc_inputs': [Tensor([100.0, 200.0], mstype.float32)],
  2033. 'skip': ['backward']}),
  2034. ('AscendQuant_4', {
  2035. 'block': inner.AscendQuant(80.0, 0.0, False, "Ceil"),
  2036. 'desc_inputs': [Tensor([100.0, 200.0], mstype.float32)],
  2037. 'skip': ['backward']}),
  2038. ('AscendQuant_5', {
  2039. 'block': inner.AscendQuant(80.0, 0.0, False, "Trunc"),
  2040. 'desc_inputs': [Tensor([100.0, 200.0], mstype.float32)],
  2041. 'skip': ['backward']}),
  2042. ('AscendQuant_6', {
  2043. 'block': inner.AscendQuant(-80.0, 10.0, False, "Round"),
  2044. 'desc_inputs': [Tensor([100.0, 200.0], mstype.float32)],
  2045. 'skip': ['backward']}),
  2046. ('AscendQuant_7', {
  2047. 'block': inner.AscendQuant(80.0, -10.0, False, "Round"),
  2048. 'desc_inputs': [Tensor([100.0, 200.0], mstype.float32)],
  2049. 'skip': ['backward']}),
  2050. ('AscendQuant_8', {
  2051. 'block': inner.AscendQuant(80.0, 10.0, False, "Round"),
  2052. 'desc_inputs': [Tensor([100.0, 200.0], mstype.float16)],
  2053. 'skip': ['backward']}),
  2054. ]
  2055. test_case_lists = [test_case_nn_ops, test_case_math_ops, test_case_array_ops, test_case_other_ops, test_case_quant_ops]
  2056. test_case = functools.reduce(lambda x, y: x + y, test_case_lists)
  2057. # use -k to select certain testcast
  2058. # pytest tests/python/ops/test_ops.py::test_backward -k LayerNorm
  2059. test_exec_case = test_case
  2060. test_backward_exec_case = filter(lambda x: 'skip' not in x[1] or 'backward' not in x[1]['skip'], test_case)
  2061. @non_graph_engine
  2062. @mindspore_test(pipeline_for_compile_forward_ge_graph_for_case_by_case_config)
  2063. def test_exec():
  2064. context.set_context(mode=context.GRAPH_MODE)
  2065. return test_exec_case
  2066. @mindspore_test(pipeline_for_compile_grad_ge_graph_for_case_by_case_config)
  2067. def test_backward_exec():
  2068. context.set_context(mode=context.GRAPH_MODE)
  2069. return test_backward_exec_case
  2070. raise_set = [
  2071. ('Cast_Error', {
  2072. 'block': (P.Cast(), {'exception': TypeError}),
  2073. 'desc_const': [mstype.int32],
  2074. 'desc_inputs': ['wrong input'],
  2075. 'desc_bprop': [Tensor(np.ones((2, 3, 3, 5)).astype(np.int32))]}),
  2076. ('Maximum_Error', {
  2077. 'block': (P.Maximum(), {'exception': TypeError}),
  2078. 'desc_const': [(1, 2, 3)],
  2079. 'desc_inputs': [[2, 3, 3, 5]],
  2080. 'desc_bprop': [[2, 3, 3, 5]]}),
  2081. ('Shape_error', {
  2082. 'block': (P.Shape(), {'exception': TypeError}),
  2083. 'desc_inputs': [(64, 1)],
  2084. 'desc_bprop': [[64]]}),
  2085. ('Flatten_Error', {
  2086. 'block': (NetForFlatten0D(), {'exception': ValueError}),
  2087. 'desc_inputs': [Tensor(np.array(0).astype(np.int32))],
  2088. 'desc_bprop': [Tensor(np.array(0).astype(np.int32))]}),
  2089. ('ScatterNdUpdate', {
  2090. 'block': (P.ScatterNdUpdate(), {'exception': TypeError}),
  2091. 'desc_inputs': (Tensor(np.ones((2, 3), np.float32)),
  2092. Tensor(np.ones((2, 2), np.float32)),
  2093. Tensor(np.ones((2,), np.float32))),
  2094. 'desc_bprop': [[2, 3]]}),
  2095. ('PReLU', {
  2096. 'block': (P.PReLU(), {'exception': ValueError}),
  2097. 'desc_inputs': [[2], [1]],
  2098. 'desc_bprop': [[1]]}),
  2099. ('SSIM', {
  2100. 'block': (nn.SSIM(), {'exception': ValueError}),
  2101. 'desc_inputs': [Tensor(np.ones((1, 3, 8, 8)), mstype.float32),
  2102. Tensor(np.ones((1, 3, 8, 8)), mstype.float32)]}),
  2103. ('StridedSlice_0', {
  2104. 'block': (P.StridedSlice(), {'exception': ValueError}),
  2105. 'desc_const': [(1, 2.2, 3), (3, 4, 5), (1, 1, 1)],
  2106. 'desc_inputs': [[4, 5, 6, 7]]}),
  2107. ('StridedSlice_1', {
  2108. 'block': (P.StridedSlice(), {'exception': ValueError}),
  2109. 'desc_const': [(1, 2, 3), (3, 4, 5), (1, 1)],
  2110. 'desc_inputs': [[4, 5, 6, 7]]}),
  2111. ('StridedSlice_2', {
  2112. 'block': (P.StridedSlice(), {'exception': ValueError}),
  2113. 'desc_const': [(1, 2, 3), (3, 4, 5), (1, 1, 0)],
  2114. 'desc_inputs': [[4, 5, 6, 7]]}),
  2115. ]
  2116. @mindspore_test(pipeline_for_compile_forward_ge_graph_for_case_by_case_config_exception)
  2117. def test_check_exception():
  2118. return raise_set