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.

nn_calculation_ops.h 75 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
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
3 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
3 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
3 years ago
3 years ago
3 years ago
3 years ago
5 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
5 years ago
3 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
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
5 years ago
5 years ago
5 years ago
3 years ago
3 years ago
3 years ago
3 years ago
5 years ago
3 years ago
3 years ago
3 years ago
5 years ago
3 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
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713
  1. /**
  2. * Copyright 2019 Huawei Technologies Co., Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /*!
  17. * \file nn_calculation_ops.h
  18. * \brief
  19. */
  20. #ifndef OPS_BUILT_IN_OP_PROTO_INC_NN_CALCULATION_OPS_H_
  21. #define OPS_BUILT_IN_OP_PROTO_INC_NN_CALCULATION_OPS_H_
  22. #include "graph/operator_reg.h"
  23. namespace ge {
  24. /**
  25. * @brief Computes the gradients of depthwise convolution with respect to
  26. * the filter . \n
  27. * @par Inputs:
  28. * Three inputs include: \n
  29. * @li input: 4D origin shape of input tensor [N, C, H, W] or [N, H, W, C],
  30. * support float16, float32, double
  31. * @li filter_size: A 4D tensor of type int32, with shape [H, W, C, K]
  32. * @li out_backprop: 4D tensor with shape [N, C, H, W] or [N, H, W, C].
  33. * Must be one of the following types: float16, float32, double . \n
  34. * @par Attributes:
  35. * @li strides: A required list or tuple. The stride of the sliding window
  36. * for height and width of input "x" of the convolution.
  37. * Must be with shape [1, 1, stride_height, stride_width] or
  38. * [1, stride_height, stride_width, 1].
  39. * @li dilations: An optional list or tuple. The dilation factor for each
  40. * dimension of input "x".
  41. * If set to k > 1, there will be k-1 skipped cells between each filter element
  42. * on that dimension. Must be with shape [1, 1, dilation_height, dilation_width]
  43. * or [1, dilation_height, dilation_width, 1].
  44. * @li pads: A required list or tuple. Padding added to each dimension of the
  45. * input.
  46. * @li data_format: An optional string. Input data format, either "NHWC" or
  47. * "NCHW" . \n
  48. * @par Outputs:
  49. * filter_grad: Gradient of the deep convolution relative to the filter with
  50. * shape [H, W, C, K]. Must be one of the following types: float16, float32,
  51. * double . \n
  52. * @attention Constraints:\n
  53. * The feature map is 4D with shape [N, C, Hi, Wi] or [N, Hi, Wi, C], but
  54. * the data is 5D with shape [N, C1, Hi, Wi, C0], where C0 is 16.\n
  55. * The filter is 4D with shape [Hf, Wf, C, K], but the data is 6D with shape
  56. * [C1, Hf, Wf, K, Co, C0],
  57. * where K is fixed at 1, and Co and C0 are 16.\n
  58. * Output backprop is 4D with shape [N, C, Ho, Wo] or [N, Ho, Wo, C], but the
  59. * data is 5D with shape [N, C1, Ho, Wo, C0],
  60. * where C is the same as that of the feature map and C0 is 16.\n
  61. * Limited by Tiling and L1 / L0 buffer memory: 512 * ceil(Wo, 16) + (480 *
  62. * stride_h + 32 * filter_h) * ceil(Wi, 16) <= l1_size and Hf*Wf <= l0b_size/512 . \n
  63. * @par Third-party framework compatibility
  64. * @li Compatible with the TensorFlow operator DepthwiseConv2DBackpropFilter.
  65. * @li Compatible with the Caffe operator DepthwiseConv2DBackpropFilter.
  66. */
  67. REG_OP(DepthwiseConv2DBackpropFilter)
  68. .INPUT(input, TensorType({float16}))
  69. .INPUT(filter_size, TensorType({DT_INT32, DT_INT64}))
  70. .INPUT(out_backprop, TensorType({float16}))
  71. .OUTPUT(filter_grad, TensorType({float32}))
  72. .REQUIRED_ATTR(strides, ListInt)
  73. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  74. .REQUIRED_ATTR(pads, ListInt)
  75. .ATTR(data_format, String, "NHWC")
  76. .OP_END_FACTORY_REG(DepthwiseConv2DBackpropFilter)
  77. /**
  78. * @brief Computes the gradients of depthwise convolution with respect to
  79. * the filter . \n
  80. * @par Inputs:
  81. * Two inputs include: \n
  82. * @li input: 4D tensor with shape [N, C, H, W] or [N, H, W, C], of type float16
  83. * @li out_backprop: 4D tensor with shape [N, C, H, W] or [N, H, W, C],
  84. * of type float16
  85. * @par Attributes:
  86. * @li filter_size: A required list or tuple. Shape of filter.
  87. * @li strides: A required list or tuple. The stride of the sliding window for
  88. * height and width of input "x" of the convolution.
  89. * Must be with shape [1, 1, stride_height, stride_width] or [1, stride_height,
  90. * stride_width, 1].
  91. * @li dilations: An optional list or tuple. The dilation factor for each
  92. * dimension of input "x".
  93. * If set to k > 1, there will be k-1 skipped cells between each filter element
  94. * on that dimension. Must be with shape [1, 1, dilation_height, dilation_width]
  95. * or [1, dilation_height, dilation_width, 1].
  96. * @li pads: A required list or tuple. Padding added to each dimension of the
  97. * input.
  98. * @li data_format: An optional string. Input data format, either "NHWC" or
  99. * "NCHW" . \n
  100. * @par Outputs:
  101. * filter_grad: Gradient of the deep convolution relative to the filter with
  102. * shape [H, W, C, K]. Must be of type float32 . \n
  103. * @attention Constraints:\n
  104. * The feature map is 4D with shape [N, C, Hi, Wi] or [N, Hi, Wi, C], but
  105. * the data is 5D with shape [N, C1, Hi, Wi, C0], where C0 is 16.\n
  106. * The filter is 4D with shape [Hf, Wf, C, K], but the data is 6D with shape
  107. * [C1, Hf, Wf, K, Co, C0],
  108. * where K is fixed at 1, and Co and C0 are 16.\n
  109. * Output backprop is 4D with shape [N, C, Ho, Wo] or [N, Ho, Wo, C], but the
  110. * data is 5D with shape [N, C1, Ho, Wo, C0],
  111. * where C is the same as that of the feature map and C0 is 16.\n
  112. * Limited by Tiling and L1 / L0 buffer memory: 512 * ceil(Wo, 16) + (480 *
  113. * stride_h + 32 * filter_h) * ceil(Wi, 16) <= l1_size and Hf*Wf <= l0b_size/512 . \n
  114. * @par Third-party framework compatibility
  115. * @li Compatible with the TensorFlow operator DepthwiseConv2DBackpropFilter.
  116. * @li Compatible with the Caffe operator DepthwiseConv2DBackpropFilter.
  117. *
  118. * @par Restrictions:
  119. * Warning: THIS FUNCTION IS DEPRECATED. Please use DepthwiseConv2DBackpropFilter
  120. * instead.
  121. */
  122. REG_OP(DepthwiseConv2DBackpropFilterD)
  123. .INPUT(input, TensorType({DT_FLOAT16, DT_FLOAT32, DT_BF16}))
  124. .INPUT(out_backprop, TensorType({DT_FLOAT16, DT_FLOAT32, DT_BF16}))
  125. .OUTPUT(filter_grad, TensorType({DT_FLOAT32}))
  126. .REQUIRED_ATTR(filter_size, ListInt)
  127. .REQUIRED_ATTR(strides, ListInt)
  128. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  129. .REQUIRED_ATTR(pads, ListInt)
  130. .ATTR(data_format, String, "NHWC")
  131. .OP_END_FACTORY_REG(DepthwiseConv2DBackpropFilterD)
  132. /**
  133. * @brief Computes the gradients of depthwise convolution with respect to the
  134. * input . \n
  135. * @par Inputs:
  136. * Three inputs include: \n
  137. * @li input_size: 4D shape of input tensor [N, C, H, W] or [N, H, W, C],
  138. * support int32, int64
  139. * @li filter: 4D filter tensor with shape of [H, W, C, K], support float16.
  140. * @li out_backprop: 4D tensor with shape [N, C, H, W] or [N, H, W, C].
  141. * Must be one of the following types: float16 . \n
  142. * @par Attributes:
  143. * @li strides: A required list or tuple of int32. The stride of the sliding window for
  144. * height and width of input "x" of the convolution.
  145. * Must be with shape [1, 1, stride_height, stride_width] or [1, stride_height,
  146. * stride_width, 1].
  147. * @li dilations: An optional list or tuple of int32. The dilation factor for each
  148. * dimension of input "x". Defaults to "[1, 1, 1, 1]".
  149. * If set to k > 1, there will be k-1 skipped cells between each filter element
  150. * on that dimension. Must be with shape [1, 1, dilation_height, dilation_width]
  151. * or [1, dilation_height, dilation_width, 1].
  152. * @li pads: A required list or tuple of int32. Padding added to each dimension of the
  153. * input.
  154. * @li data_format: An optional string. Input data format, either "NHWC" or
  155. * "NCHW". Defaults to "NHWC" . \n
  156. * @par Outputs:
  157. * input_grad: Gradient of the deep convolution relative to the input with shape
  158. * [N, C, H, W] or [N, H, W, C] Must be one of the following types: float16 . \n
  159. * @attention Constraints:\n
  160. * The feature map is 4D with shape [N, C, Hi, Wi] or [N, Hi, Wi, C], but
  161. * the data is 5D with shape [N, C1, Hi, Wi, C0], where C0 is 16.\n
  162. * The filter is 4D with shape [Hf, Wf, C, K], but the data is 6D with shape
  163. * [C1, Hf, Wf, K, Co, C0],
  164. * where K is fixed at 1, and Co and C0 are 16.\n
  165. * Output backprop is 4D with shape [N, C, Ho, Wo] or [N, Ho, Wo, C], but the
  166. * data is 5D with shape [N, C1, Ho, Wo, C0],
  167. * where C is the same as that of the feature map and C0 is 16.\n
  168. * Limited by Tiling: max_h_in_l1 >= C0, where max_h_in_l1 = (l1_size - Hf *
  169. * Wf * C0 * C0 * 2) / (2 * Wo *C0).\n
  170. * @par Third-party framework compatibility
  171. * @li Compatible with the TensorFlow operator DepthwiseConv2DBackpropInput.
  172. * @li Compatible with the Caffe operator DepthwiseConv2DBackpropInput.
  173. */
  174. REG_OP(DepthwiseConv2DBackpropInput)
  175. .INPUT(input_size, TensorType({DT_INT32, DT_INT64}))
  176. .INPUT(filter, TensorType({DT_FLOAT16}))
  177. .INPUT(out_backprop, TensorType({DT_FLOAT16}))
  178. .OUTPUT(input_grad, TensorType({DT_FLOAT16, DT_FLOAT32}))
  179. .REQUIRED_ATTR(strides, ListInt)
  180. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  181. .REQUIRED_ATTR(pads, ListInt)
  182. .ATTR(data_format, String, "NHWC")
  183. .OP_END_FACTORY_REG(DepthwiseConv2DBackpropInput)
  184. /**
  185. * @brief Computes the gradients of depthwise convolution with respect to the
  186. * input . \n
  187. * @par Inputs:
  188. * Two inputs include: \n
  189. * @li filter: A 4D tensor of type float16, with shape [H, W, C, K]
  190. * @li out_backprop: 4D tensor with shape [N, C, H, W] or [N, H, W, C], of
  191. * type float16
  192. * @par Attributes:
  193. * @li input_size: A required list or tuple. The origin shape of input.
  194. * @li strides: A required list or tuple. The stride of the sliding window for
  195. * height and width of input "x" of the convolution.
  196. * Must be with shape [1, 1, stride_height, stride_width] or [1, stride_height,
  197. * stride_width, 1].
  198. * @li dilations: An optional list or tuple. The dilation factor for each
  199. * dimension of input "x".
  200. * If set to k > 1, there will be k-1 skipped cells between each filter element
  201. * on that dimension. Must be with shape [1, 1, dilation_height, dilation_width]
  202. * or [1, dilation_height, dilation_width, 1].
  203. * @li pads: A required list or tuple. Padding added to each dimension of the
  204. * input.
  205. * @li data_format: An optional string. Input data format, either "NHWC" or
  206. * "NCHW" . \n
  207. * @par Outputs:
  208. * input_grad: Gradient of the deep convolution relative to the input with
  209. * shape [N, C, H, W] or [N, H, W, C]. Must be of type float16 . \n
  210. * @attention Constraints:\n
  211. * The feature map is 4D with shape [N, C, Hi, Wi] or [N, Hi, Wi, C], but
  212. * the data is 5D with shape [N, C1, Hi, Wi, C0], where C0 is 16.\n
  213. * The filter is 4D with shape [Hf, Wf, C, K], but the data is 6D with shape
  214. * [C1, Hf, Wf, K, Co, C0],
  215. * where K is fixed at 1, and Co and C0 are 16.\n
  216. * Output backprop is 4D with shape [N, C, Ho, Wo] or [N, Ho, Wo, C], but the
  217. * data is 5D with shape [N, C1, Ho, Wo, C0],
  218. * where C is the same as that of the feature map and C0 is 16.\n
  219. * Limited by Tiling: max_h_in_l1 >= C0, where max_h_in_l1 = (l1_size - Hf *
  220. * Wf * C0 * C0 * 2) / (2 * Wo *C0).\n
  221. * @par Third-party framework compatibility
  222. * @li Compatible with the TensorFlow operator DepthwiseConv2DBackpropInput.
  223. * @li Compatible with the Caffe operator DepthwiseConv2DBackpropInput.
  224. *
  225. * @par Restrictions:
  226. * Warning: THIS FUNCTION IS DEPRECATED. Please use DepthwiseConv2DBackpropInput
  227. * instead.
  228. */
  229. REG_OP(DepthwiseConv2DBackpropInputD)
  230. .INPUT(filter, TensorType({DT_FLOAT16}))
  231. .INPUT(out_backprop, TensorType({DT_FLOAT16}))
  232. .OUTPUT(input_grad, TensorType({DT_FLOAT16, DT_FLOAT32}))
  233. .REQUIRED_ATTR(input_size, ListInt)
  234. .REQUIRED_ATTR(strides, ListInt)
  235. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  236. .REQUIRED_ATTR(pads, ListInt)
  237. .ATTR(data_format, String, "NHWC")
  238. .OP_END_FACTORY_REG(DepthwiseConv2DBackpropInputD)
  239. /**
  240. *@brief Computes a 2D deep convolution given a 4D input tensor and a filter
  241. * tensor . \n
  242. *@par Inputs:
  243. *Two required inputs and two optional inputs, including: \n
  244. * @li x: A 4D tensor of type float16 or int8 or int4, with shape [N, C, H, W] or [N, H, W, C]
  245. * @li filter: A 4D tensor of type float16 or int8 or int4, with shape [H, W, C, K]
  246. * @li bias: An optional tensor of type float16 or int32
  247. * @li offset_w: An optional float16 or int8 or int4, used for quantized inference
  248. * @par Attributes:
  249. * @li strides: A required list or tuple. The stride of the sliding window for
  250. * height and width of input "x" of the convolution.
  251. * Must be with shape [1, 1, stride_height, stride_width] or [1, stride_height,
  252. * stride_width, 1].
  253. * @li dilations: An optional list or tuple. The dilation factor for each
  254. * dimension of input "x".
  255. * If set to k > 1, there will be k-1 skipped cells between each filter element
  256. * on that dimension. Must be with shape [1, 1, dilation_height, dilation_width]
  257. * or [1, dilation_height, dilation_width, 1]. Defaults to "[1, 1, 1, 1]".
  258. * @li pads: A required list or tuple of int32. Padding added to each dimension of the
  259. * input.
  260. * @li data_format: An optional string. Input data format, either "NHWC" or
  261. * "NCHW". Defaults to "NHWC".
  262. * @li offset_x: An optional int. Input offset, used for quantized inference.
  263. * Defaults to 0 . \n
  264. * @par Outputs:
  265. * y: 4D tensor of type float16 or int32, with shape [N, C, H, W] or [N, H, W, C]
  266. * @attention Constraints:\n
  267. * The feature map is 4D with shape [N, C, Hi, Wi] or [N, Hi, Wi, C], but
  268. * the data is 5D with shape [N, C1, Hi, Wi, C0], where C0 is 16.\n
  269. * The filter is 4D with shape [Hf, Wf, C, K], but the data is 6D with shape
  270. * [C1, Hf, Wf, K, Co, C0],
  271. * where K is fixed at 1, and Co and C0 are 16.\n
  272. * Limited by the size of L1 buffer memory: \n
  273. * (l1_size - filter_h*filter_w*BLOCK_SIZE*BLOCK_SIZE*data_size) // (Wi *
  274. * BLOCK_SIZE * data_size) >= (BLOCK_SIZE * strides_h + filter_h - strides_h).\n
  275. * @par Quantization supported or not
  276. * Yes
  277. * @par Third-party framework compatibility
  278. * @li Compatible with the TensorFlow operator DepthwiseConv2D.
  279. * @li Compatible with the Caffe operator DepthwiseConv2D.
  280. */
  281. REG_OP(DepthwiseConv2D)
  282. .INPUT(x, TensorType({DT_FLOAT16, DT_INT8, DT_INT4}))
  283. .INPUT(filter, TensorType({DT_FLOAT16, DT_INT8, DT_INT4}))
  284. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_INT32, DT_FLOAT}))
  285. .OPTIONAL_INPUT(offset_w, TensorType({DT_FLOAT16, DT_INT8, DT_INT4}))
  286. .OUTPUT(y, TensorType({DT_FLOAT16, DT_INT32, DT_FLOAT}))
  287. .REQUIRED_ATTR(strides, ListInt)
  288. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  289. .REQUIRED_ATTR(pads, ListInt)
  290. .ATTR(data_format, String, "NHWC")
  291. .ATTR(offset_x, Int, 0)
  292. .OP_END_FACTORY_REG(DepthwiseConv2D)
  293. /**
  294. *@brief Performs the the backward operation for "BiasAdd" on the "bias" tensor.
  295. * It accumulates all the values from out_backprop into the feature
  296. * dimension. For NHWC data format, the feature dimension is the last.
  297. * For NCHW data format, the feature dimension is the third-to-last . \n
  298. *@par Inputs:
  299. *x: A Tensor of type NumberType . \n
  300. *@par Attributes:
  301. *data_format: Data format. Defaults to "NHWC" . \n
  302. *@par Outputs:
  303. *y: A Tensor.Has the same type as "x" . \n
  304. *@par Third-party framework compatibility
  305. * Compatible with the TensorFlow operator BiasAddGrad.
  306. */
  307. REG_OP(BiasAddGrad)
  308. .INPUT(x, TensorType::NumberType())
  309. .OUTPUT(y, TensorType::NumberType())
  310. .ATTR(data_format, String, "NHWC")
  311. .OP_END_FACTORY_REG(BiasAddGrad)
  312. /**
  313. *@brief Computes the gradients of convolution with respect to the input.
  314. *@par Inputs:
  315. * Three inputs:
  316. * @li input_size: A const Tensor of type int32. Currently does not support
  317. * data tensor. An integer vector representing the shape of input, where
  318. * input is a 4-D tensor [batch, height, width, channels]
  319. * or [batch, channels, height, width].
  320. * @li filter: A Tensor. Must be one of the following types: float16, float32,
  321. * float64. 4-D with shape
  322. * [filter_height, filter_width, in_channels, out_channels]
  323. * or [out_channels, filter_height, filter_width, in_channels]
  324. * or [out_channels, in_channel, filter_height, filter_width].
  325. * @li out_backprop: A Tensor. Must have the same type as filter.
  326. * 4-D with shape [batch, out_height, out_width, out_channels]
  327. * or [batch, out_channels, out_height, out_width].
  328. * Gradients with respect to the output of the convolution.
  329. *\n
  330. *\n
  331. * The following are the supported data types and data formats:\n
  332. *\n
  333. *\n
  334. | Tensor | out_bckprop | filter | y |\n
  335. |-----------|-------------|---------|--------|\n
  336. | Data Type | float16 | float16 | float16|\n
  337. | | float32 | float32 | float32|\n
  338. | | float64 | float64 | float64|\n
  339. | Format | NCHW | NCHW | NCHW |\n
  340. | | NHWC | HWCN | NHWC |\n
  341. *\n
  342. * For float32 and float64 type, the actual calculation on the chip is based on
  343. * float16.
  344. *\n
  345. *
  346. *@par Attributes:
  347. * Five attributes:
  348. * @li strides: A tuple/list of 4 integers. The stride of the sliding window
  349. * for H/W dimension. The index of H/W is same as data_format.
  350. * @li pads: A tuple/list of 4 integers, [top, bottom, left, right] pads
  351. * on feature map
  352. * @li dilations: A tuple/list of 4 integers, The dilation factor for each
  353. * dimension of input, defaults to [1,1,1,1].
  354. * @li groups: Number of blocked connections from input channels to output
  355. * channels.
  356. * @li data_format: An optional string from: "NHWC", "NCHW". Defaults to
  357. * "NHWC". Specify the data format of the input and output data.
  358. *\n
  359. *\n
  360. * The following value range restrictions must be met:\n
  361. *\n
  362. *\n
  363. | Name | Field | Scope |\n
  364. |------------------|----------|--------------|\n
  365. | input_size | H | [1, 200000] |\n
  366. | | W | [1, 4096] |\n
  367. | Filter | H | [1, 255] |\n
  368. | | W | [1, 255] |\n
  369. | out_backprop | H*strideH| [1, 200000] |\n
  370. | | W*strideW| [1, 4096] |\n
  371. | y(fmap) | H | [1, 200000] |\n
  372. | | W | [1, 4096] |\n
  373. | Stride | H | [1, 63] |\n
  374. | | W | [1, 63] |\n
  375. | Padding | Top | [0, 255] |\n
  376. | | Bottom | [0, 255] |\n
  377. | | Left | [0, 255] |\n
  378. | | Right | [0, 255] |\n
  379. | Dilation | H | [1, 255] |\n
  380. | | W | [1, 255] |\n
  381. *\n
  382. * In Ascend910, fmap or out_backprop's H and W not support 1 when
  383. * fmap_h + pad_top + pad_bottom != (filter_height - 1) * dilation_h + 1
  384. * and filter_width > fmap_width
  385. * If filter_h = 1 and filter_w = 1, out_backprop_w * stride_h * stride_w < 4096
  386. *\n
  387. *
  388. *@par Outputs:
  389. * y: A Tensor. Has the same type as filter,and has same format as input_size.
  390. *\n
  391. * out_backprop_height = (fmap_height + pad_top + pad_bottom -
  392. * (dilation_h * (filter_height - 1) + 1))
  393. * / stride_h + 1
  394. *\n
  395. * out_backprop_width = (fmap_width + pad_left + pad_right -
  396. * (dilation_w * (filter_width - 1) + 1))
  397. * / stride_w + 1
  398. *\n
  399. *
  400. *@par Third-party framework compatibility
  401. * Compatible with Tensorflow's conv2d_backprop_input
  402. */
  403. REG_OP(Conv2DBackpropInput)
  404. .INPUT(input_size, TensorType({DT_INT32}))
  405. .INPUT(filter, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  406. .INPUT(out_backprop, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  407. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  408. .REQUIRED_ATTR(strides, ListInt)
  409. .REQUIRED_ATTR(pads, ListInt)
  410. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  411. .ATTR(groups, Int, 1)
  412. .ATTR(data_format, String, "NHWC")
  413. .OP_END_FACTORY_REG(Conv2DBackpropInput)
  414. /**
  415. *@brief Computes the gradients of convolution with respect to the input.
  416. *@par Inputs:
  417. * Two inputs:
  418. * @li filter: A Tensor. Types is float16.
  419. * 4-D with shape [filter_height, filter_width, in_channels, out_channels]
  420. * or [out_channels, filter_height, filter_width, in_channels]
  421. * or [out_channels, in_channel, filter_height, filter_width].
  422. * @li out_backprop: A Tensor. Must have the same type as filter.
  423. * 4-D with shape [batch, out_height, out_width, out_channels]
  424. * or [batch, out_channels, out_height, out_width].
  425. * Gradients with respect to the output of the convolution.
  426. *@par Attributes:
  427. * Six attributes:
  428. * @li input_size A Tensor of type int32. An integer vector representing the
  429. * shape of input, where input is a 4-D tensor [batch, height, width, channels]
  430. * or [batch, channels, height, width].
  431. * @li strides: A tuple/list of 4 integers. The stride of the sliding window
  432. * for H/W dimension. The index of H/W is same as data_format.
  433. * @li pads: A tuple/list of 4 integers, [top, bottom, left, right] pads on
  434. * feature map
  435. * @li dilations: A tuple/list of 4 integers, The dilation factor for each
  436. * dimension of input, defaults to [1,1,1,1].
  437. * @li groups: Number of blocked connections from input channels to output
  438. * channels.
  439. * @li data_format: An optional string from: "NHWC", "NCHW". Defaults to
  440. * "NHWC". Specify the data format of the input and output data.
  441. *@par Outputs:
  442. * y: A Tensor. Has the same type as filter,4-D tensor [batch, height, width,
  443. * channels] or [batch, channels, height, width].
  444. *@par Third-party framework compatibility
  445. * Compatible with Tensorflow's conv2d_backprop_input
  446. *@par Restrictions:
  447. * Warning: THIS FUNCTION IS DEPRECATED. Please use Conv2DBackpropInput instead.
  448. */
  449. REG_OP(Conv2DBackpropInputD)
  450. .INPUT(filter, TensorType({DT_FLOAT16, DT_INT8, DT_BF16}))
  451. .INPUT(out_backprop, TensorType({DT_FLOAT16, DT_INT8, DT_BF16}))
  452. .OUTPUT(y, TensorType({DT_FLOAT16, DT_INT32, DT_FLOAT32, DT_BF16}))
  453. .REQUIRED_ATTR(input_size, ListInt)
  454. .REQUIRED_ATTR(strides, ListInt)
  455. .REQUIRED_ATTR(pads, ListInt)
  456. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  457. .ATTR(groups, Int, 1)
  458. .ATTR(data_format, String, "NHWC")
  459. .OP_END_FACTORY_REG(Conv2DBackpropInputD)
  460. /**
  461. *@brief Computes the Deconvolution with respect to the input.
  462. *@par Inputs:
  463. * Two required inputs:
  464. * @li x: A Tensor of type float16 or int8. 4D with shape
  465. * [batch, out_channels, out_height, out_width]. Gradients with respect
  466. * to the output of the convolution.
  467. * @li filter: A Tensor. Must have the same type as "x".
  468. * 4D with shape [out_channels, in_channel, filter_height, filter_width].\n
  469. * Two optional inputs:
  470. * @li bias: An optional tensor. Must have the same type as "y".
  471. * @li offset_w: An optional 1D tensor for quantized deconvolution.
  472. * Type is int8. Reserved.\n
  473. *\n
  474. *\n
  475. * The following are the supported data types and data formats:\n
  476. *\n
  477. *\n
  478. | Tensor | x | filter | bias | y |\n
  479. |-----------|---------|---------|---------|--------|\n
  480. | Data Type | float16 | float16 | float16 | float16|\n
  481. | | int8 | int8 | int32 | int32 |\n
  482. | Format | NCHW | NCHW | ND | NCHW |\n
  483. *\n
  484. * For int8, a dequant or requant operator must be followed.
  485. *\n
  486. *
  487. *@par Attributes:
  488. * Six attributes:
  489. * @li strides: A tuple or list of 2 integers. The stride of the sliding window
  490. * for H/W dimension, defaults to [1,1].
  491. * @li pads: A tuple or list of 4 integers. The [top, bottom, left, right]
  492. * padding on the feature map, defaults to [0,0,0,0].
  493. * @li dilations: A tuple or list of 4 integers. The dilation factor for each
  494. * dimension of input, defaults to [1,1,1,1].
  495. * @li groups: Number of blocked connections from input channels to
  496. output channels. Defaults to "1".
  497. * @li data_format: An optional string from: "NCHW". Defaults to "NCHW". \n
  498. Specify the data format of the input and output data.
  499. * @li offset_x: An optional integer for quantized deconvolution.
  500. * The negative offset added to the input image for int8 type. Ensure offset_x
  501. * within the effective range of int8 [-128, 127]. Defaults to "0".
  502. *\n
  503. *\n
  504. * The following value range restrictions must be met:\n
  505. *\n
  506. *\n
  507. | Name | Field | Scope |\n
  508. |------------------|----------|--------------|\n
  509. | x (out_backprop) | H*strideH| [1, 200000] |\n
  510. | | W*strideW| [1, 4096] |\n
  511. | Filter | H | [1, 255] |\n
  512. | | W | [1, 255] |\n
  513. | y (fmap) | H | [1, 200000] |\n
  514. | | W | [1, 4096] |\n
  515. | Stride | H | [1, 63] |\n
  516. | | W | [1, 63] |\n
  517. | Padding | Top | [0, 255] |\n
  518. | | Bottom | [0, 255] |\n
  519. | | Left | [0, 255] |\n
  520. | | Right | [0, 255] |\n
  521. | Dilation | H | [1, 255] |\n
  522. | | W | [1, 255] |\n
  523. | Offset_x | | [-128, 127] |\n
  524. *\n
  525. * In Ascend910, fmap or out_backprop's H and W not support 1 when
  526. * fmap_h + pad_top + pad_bottom != (filter_height - 1) * dilation_h + 1
  527. * and filter_width > fmap_width
  528. * If filter_h = 1 and filter_w = 1, out_backprop_w * stride_h * stride_w < 4096
  529. *\n
  530. *
  531. *@par Outputs:
  532. * y: A Tensor. 4D tensor with shape [batch, channels, height, width].
  533. *\n
  534. * out_backprop_height = (fmap_height + pad_top + pad_bottom -
  535. * (dilation_h * (filter_height - 1) + 1))
  536. * / stride_h + 1
  537. *\n
  538. * out_backprop_width = (fmap_width + pad_left + pad_right -
  539. * (dilation_w * (filter_width - 1) + 1))
  540. * / stride_w + 1
  541. *\n
  542. *
  543. * When type of x is float16, the type of y must be float16.
  544. * When type of x is int8, the type of y must be int32.
  545. */
  546. REG_OP(Deconvolution)
  547. .INPUT(x, TensorType({DT_FLOAT16, DT_INT8}))
  548. .INPUT(filter, TensorType({DT_FLOAT16, DT_INT8}))
  549. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_INT32}))
  550. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  551. .OUTPUT(y, TensorType({DT_FLOAT16, DT_INT32}))
  552. .ATTR(strides, ListInt, {1, 1})
  553. .ATTR(pads, ListInt, {0, 0, 0, 0})
  554. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  555. .ATTR(groups, Int, 1)
  556. .ATTR(data_format, String, "NCHW")
  557. .ATTR(offset_x, Int, 0)
  558. .OP_END_FACTORY_REG(Deconvolution)
  559. /**
  560. *@brief Computes the gradients of convolution with respect to the filter
  561. *@par Inputs:
  562. * Three inputs:
  563. * @li x: A Tensor. Must be one of the following types: float16, float32,
  564. * float64.4-D with shape [batch, in_height, in_width, in_channels] or
  565. * [batch, in_channels, in_height, in_width].
  566. * @li filter_size: A const Tensor of type int32. Currently does not support
  567. * data tensor. An integer vector representing the tensor shape of filter,
  568. * where filter is a 4-D tensor [filter_height, filter_width, in_channels,
  569. * out_channels] or [out_channels, filter_height, filter_width, in_channels]
  570. * or [out_channels, in_channel, filter_height, filter_width].
  571. * @li out_backprop: A Tensor. Must have the same type as x. 4-D with shape
  572. * [batch, out_height, out_width, out_channels] or [batch, out_channels,
  573. * out_height, out_width]. Gradients with respect to the output of the
  574. * convolution.
  575. *\n
  576. *\n
  577. * The following are the supported data types and data formats:\n
  578. *\n
  579. *\n
  580. | Tensor | x | out_backprop | y |\n
  581. |-----------|---------|--------------|---------|\n
  582. | Data Type | float16 | float16 | float16 |\n
  583. | | float32 | float32 | float32 |\n
  584. | | float64 | float64 | float64 |\n
  585. | Format | NCHW | NCHW | NCHW |\n
  586. | | NHWC | NHWC | HWCN |\n
  587. *\n
  588. * For float32 and float64 type of x and outbackprop, the actual calculation on the chip
  589. * is based on float16.
  590. *\n
  591. *
  592. *@par Attributes:
  593. * Five attributes:
  594. * @li strides: A tuple/list of 4 integers. The stride of the sliding window
  595. * for H/W dimension. The index of H/W is same as data_format.
  596. * @li pads: A tuple/list of 4 integers, [top, bottom, left, right] pads on
  597. * feature map.
  598. * @li dilations: A tuple/list of 4 integers, The dilation factor for each
  599. * dimension of input, defaults to [1,1,1,1].
  600. * @li groups: Number of blocked connections from input channels to output
  601. * channels.
  602. * @li data_format: An optional string from: "NHWC", "NCHW". Defaults to
  603. * "NHWC". Specify the data format of the input and output data.
  604. *\n
  605. *\n
  606. * The following value range restrictions must be met:\n
  607. *\n
  608. *\n
  609. | Name | Field | Scope |\n
  610. |------------------|----------|--------------|\n
  611. | x(fmap) | H | [1, 200000] |\n
  612. | | W | [1, 200000] |\n
  613. | Filter Size | H | [1, 200000] |\n
  614. | | W | [1, 200000] |\n
  615. | out_backprop | H | [1, 200000] |\n
  616. | | W | [1, 200000] |\n
  617. | y | H | [1, 200000] |\n
  618. | | W | [1, 200000] |\n
  619. | Stride | H | [1, 200000] |\n
  620. | | W | [1, 200000] |\n
  621. | Padding | Top | [0, 200000] |\n
  622. | | Bottom | [0, 200000] |\n
  623. | | Left | [0, 200000] |\n
  624. | | Right | [0, 200000] |\n
  625. | Dilation | H | [1, 200000] |\n
  626. | | W | [1, 200000] |\n
  627. *\n
  628. *@par Outputs:
  629. * y: A Tensor. Has the same type as x, has the same format as filter_size.
  630. *\n
  631. * out_backprop_height = (in_height + pad_top + pad_bottom -
  632. * (dilation_h * (filter_height - 1) + 1))
  633. * / stride_h + 1
  634. *\n
  635. * out_backprop_width = (in_width + pad_left + pad_right -
  636. * (dilation_w * (filter_width - 1) + 1))
  637. * / stride_w + 1
  638. *\n
  639. *
  640. *@par Third-party framework compatibility
  641. * Compatible with Tensorflow's conv2d_backprop_filter
  642. */
  643. REG_OP(Conv2DBackpropFilter)
  644. .INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  645. .INPUT(filter_size, TensorType({DT_INT32}))
  646. .INPUT(out_backprop, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  647. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  648. .REQUIRED_ATTR(strides, ListInt)
  649. .REQUIRED_ATTR(pads, ListInt)
  650. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  651. .ATTR(groups, Int, 1)
  652. .ATTR(data_format, String, "NHWC")
  653. .OP_END_FACTORY_REG(Conv2DBackpropFilter)
  654. /**
  655. *@brief Computes the gradients of convolution with respect to the filter.
  656. *@par Inputs:
  657. * Two inputs:
  658. * @li x: A Tensor. Type is float16.
  659. * 4-D with shape [batch, in_height, in_width, in_channels] or [batch,
  660. * in_channels, in_height, in_width].
  661. * @li out_backprop: A Tensor. Must have the same type as x. 4-D with shape
  662. * [batch, out_height, out_width, out_channels] or [batch, out_channels,
  663. * out_height, out_width]. Gradients with respect to the output of the
  664. * convolution.
  665. *@par Attributes:
  666. * Six attributes:
  667. * @li filter_size: A Tensor of type integers. An integer vector representing
  668. * the tensor shape of filter,
  669. * where filter is a 4-D tensor [filter_height, filter_width, in_channels,
  670. * out_channels] or [out_channels, filter_height, filter_width, in_channels]
  671. * or [out_channels, in_channel, filter_height, filter_width].
  672. * @li strides: A tuple/list of 4 integers. The stride of the sliding window
  673. * for H/W dimension. The index of H/W is same as data_format.
  674. * @li pads: A tuple/list of 4 integers, [top, bottom, left, right] pads on
  675. * feature map
  676. * @li dilations: A tuple/list of 4 integers, The dilation factor for each
  677. * dimension of input, defaults to [1,1,1,1].
  678. * @li groups: Number of blocked connections from input channels to output
  679. * channels.
  680. * @li data_format: An optional string from: "NHWC", "NCHW". Defaults to
  681. * "NHWC". Specify the data format of the input and output data.
  682. *@par Outputs:
  683. * y: A Tensor. Type is float32, a 4-D tensor [filter_height, filter_width,
  684. * in_channels, out_channels] or [out_channels, filter_height, filter_width,
  685. * in_channels] or [out_channels, in_channel, filter_height, filter_width].
  686. * Compatible with Tensorflow's conv2d_backprop_filter
  687. *@par Restrictions:
  688. * Warning: THIS FUNCTION IS DEPRECATED. Please use Conv2DBackpropFilter instead.
  689. */
  690. REG_OP(Conv2DBackpropFilterD)
  691. .INPUT(x, TensorType({DT_FLOAT16}))
  692. .INPUT(out_backprop, TensorType({DT_FLOAT16}))
  693. .OUTPUT(y, TensorType({DT_FLOAT}))
  694. .REQUIRED_ATTR(filter_size, ListInt)
  695. .REQUIRED_ATTR(strides, ListInt)
  696. .REQUIRED_ATTR(pads, ListInt)
  697. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  698. .ATTR(groups, Int, 1)
  699. .ATTR(data_format, String, "NHWC")
  700. .OP_END_FACTORY_REG(Conv2DBackpropFilterD)
  701. /**
  702. *@brief Computes a 2D convolution given 4D "x" and "filter" tensors.
  703. *@par Inputs:
  704. *@li x: A 4D tensor of input image. With the format "NHWC", the data is stored
  705. * in the order of: [batch, in_height, in_width, in_channels].
  706. *@li filter: A 4D tensor of learnable filters. Must have the same type as "x".
  707. * With the format "HWCN" , the data is stored in the order of: [filter_height,
  708. * filter_width, in_channels / groups, out_channels].
  709. *@li bias: An optional 1D tensor of additive biases to the filter outputs.
  710. * The data is stored in the order of: [out_channels].
  711. *@li offset_w: Reserved.
  712. *\n
  713. *\n
  714. * The following are the supported data types and data formats:
  715. *\n
  716. *\n
  717. | Tensor | x | filter | bias | y |\n
  718. | :-------: | :-----: | :-----: | :-----: | :-----: |\n
  719. | Data Type | float16 | float16 | float16 | float16 |\n
  720. | | float32 | float32 | float32 | float32 |\n
  721. | | int8 | int8 | int32 | int32 |\n
  722. | Format | NCHW | NCHW | ND | NCHW |\n
  723. | | NHWC | HWCN | ND | NHWC |\n
  724. *\n
  725. * For float32 type, the actual calculation on the chip is based on
  726. * float16.
  727. *\n
  728. *
  729. *@par Attributes:
  730. *@li strides: Required. A list of 4 integers. The stride of the sliding window
  731. * for each dimension of input. The dimension order is determined by the data
  732. * format of "x". The N and C dimensions must be set to 1.
  733. *@li pads: Required. A list of 4 integers. The number of pixels to add to each
  734. * (top, bottom, left, right) side of the input.
  735. *@li dilations: Optional. A list of 4 integers. The dilation factor for each
  736. * dimension of input. The dimension order is determined by the data format of
  737. * "x". The N and C dimensions must be set to 1. Defaults to [1, 1, 1, 1].
  738. *@li groups: Optional. An integer of type int32. The number of blocked
  739. * connections from input channels to output channels. In_channels and
  740. * out_channels must both be divisible by "groups". Defaults to 1.
  741. *@li offset_x: Optional. An integer of type int32. The negative offset added
  742. * to the input image for int8 type. Ensure that the output is within the
  743. * effective range. Defaults to 0.
  744. *@li data_format: Reserved.
  745. *\n
  746. *\n
  747. * The following value range restrictions must be met:
  748. *\n
  749. *\n
  750. | Name | Field | Scope |\n
  751. | :--------------: | :------: | :---------: |\n
  752. | Input Image Size | H | [1, 100000] |\n
  753. | | W | [1, 4096] |\n
  754. | Filter Size | H | [1, 255] |\n
  755. | | W | [1, 255] |\n
  756. | Stride | H | [1, 63] |\n
  757. | | W | [1, 63] |\n
  758. | Padding | Top | [0, 255] |\n
  759. | | Bottom | [0, 255] |\n
  760. | | Left | [0, 255] |\n
  761. | | Right | [0, 255] |\n
  762. | Dilation | H | [1, 255] |\n
  763. | | W | [1, 255] |\n
  764. | Offset_x | - | [-128, 127] |\n
  765. *\n
  766. * The W dimension of the input image supports cases exceeding 4096, but it may
  767. * cause compilation errors.
  768. *\n
  769. *
  770. *@par Outputs:
  771. * y: A 4D Tensor of output feature map. Has the same type as "x". With the
  772. * format "NHWC", the data is stored in the order of: [batch, out_height,
  773. * out_width, out_channels].
  774. *\n
  775. * out_height = (in_height + pad_top + pad_bottom -
  776. * (dilation_h * (filter_height - 1) + 1))
  777. * / stride_h + 1
  778. *\n
  779. * out_width = (in_width + pad_left + pad_right -
  780. * (dilation_w * (filter_width - 1) + 1))
  781. * / stride_w + 1
  782. *\n
  783. *
  784. *@par Quantization supported or not
  785. *@li Yes
  786. *
  787. *@par Third-party framework compatibility
  788. *@li Compatible with the TensorFlow operator "conv2d".
  789. *@li Compatible with the Caffe operator 2D "Convolution".
  790. */
  791. REG_OP(Conv2D)
  792. .INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT8, DT_BF16}))
  793. .INPUT(filter, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT8, DT_BF16}))
  794. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT32}))
  795. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  796. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT32, DT_BF16}))
  797. .REQUIRED_ATTR(strides, ListInt)
  798. .REQUIRED_ATTR(pads, ListInt)
  799. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  800. .ATTR(groups, Int, 1)
  801. .ATTR(data_format, String, "NHWC")
  802. .ATTR(offset_x, Int, 0)
  803. .OP_END_FACTORY_REG(Conv2D)
  804. /**
  805. *@brief Computes a 2D convolution given 4D "x" and "filter_compress" tensors.
  806. *@par Inputs:
  807. *@li x: A 4D tensor of input images.
  808. *@li filter_compress: A 4D tensor of compressed filter data blocks.
  809. *@li compress_index: A 1D tensor of index for decompression.
  810. *@li bias: An optional 1D tensor of additive biases to the filter outputs.
  811. * The data is stored in the order of: [out_channels].
  812. *@li offset_w: Reserved.
  813. *\n
  814. *\n
  815. * The following are the supported data types and data formats:
  816. *\n
  817. *\n
  818. | Tensor | x | filter_compress | compress_index | bias | y |\n
  819. | :-------: | :-----: | :--------------: | :------------: | :-----: | :-----: |\n
  820. | Data Type | int8 | int8 | int8 | int32 | int32 |\n
  821. | Format | NCHW | NCHW | ND | ND | NCHW |\n
  822. | | NHWC | HWCN | | | NHWC |\n
  823. *\n
  824. * For float32 type, the actual calculation on the chip is based on
  825. * float16.
  826. *\n
  827. *
  828. *@par Attributes:
  829. *@li strides: Required. A list of 4 integers. The stride of the sliding window
  830. * for each dimension of input. The dimension order is determined by the data
  831. * format of "x". The N and C dimensions must be set to 1.
  832. *@li pads: Required. A list of 4 integers. The number of pixels to add to each
  833. * (top, bottom, left, right) side of the input.
  834. *@li dilations: Optional. A list of 4 integers. The dilation factor for each
  835. * dimension of input. The dimension order is determined by the data format of
  836. * "x". The N and C dimensions must be set to 1. Defaults to [1, 1, 1, 1].
  837. *@li groups: Optional. An integer of type int32. The number of blocked
  838. * connections from input channels to output channels. In_channels and
  839. * out_channels must both be divisible by "groups". Only support 1.
  840. *@li offset_x: Optional. An integer of type int32. The negative offset added
  841. * to the input image for int8 type. Ensure that the output is within the
  842. * effective range. Defaults to 0.
  843. *@li data_format: Reserved.
  844. * @li alg: compress algorithm, default weight_unzip.
  845. *
  846. *@par Outputs:
  847. * y: A 4D Tensor of output feature map. Has the same type as "x". With the
  848. * format "NHWC", the data is stored in the order of: [batch, out_height,
  849. * out_width, out_channels].
  850. *\n
  851. *
  852. *@par Restrictions:
  853. *Warning: THIS FUNCTION IS EXPERIMENTAL.
  854. */
  855. REG_OP(Conv2DCompress)
  856. .INPUT(x, TensorType({DT_INT8}))
  857. .INPUT(filter_compress, TensorType({DT_INT8}))
  858. .INPUT(compress_index, TensorType({DT_INT8}))
  859. .OPTIONAL_INPUT(bias, TensorType({DT_INT32}))
  860. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  861. .OUTPUT(y, TensorType({DT_INT32}))
  862. .REQUIRED_ATTR(strides, ListInt)
  863. .REQUIRED_ATTR(pads, ListInt)
  864. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  865. .ATTR(groups, Int, 1)
  866. .ATTR(data_format, String, "NHWC")
  867. .ATTR(offset_x, Int, 0)
  868. .ATTR(alg, String, "weight_unzip")
  869. .OP_END_FACTORY_REG(Conv2DCompress)
  870. /**
  871. *@brief Computes a 2D deformable convolution given 4D "x", "filter" and
  872. * "offsets" tensors.
  873. *@par Inputs:
  874. *@li x: A 4D tensor of input image. With the format "NHWC", the data is stored
  875. * in the order of: [batch, in_height, in_width, in_channels].
  876. *@li filter: A 4D tensor of learnable filters. Must have the same type as "x".
  877. * With the format "HWCN" , the data is stored in the order of: [filter_height,
  878. * filter_width, in_channels / groups, out_channels].
  879. *@li offsets: A 4D tensor of x-y coordinates offset and mask. With the format
  880. * "NHWC", the data is stored in the order of: [batch, out_height, out_width,
  881. * deformable_groups * filter_height * filter_width * 3].
  882. *@li bias: An optional 1D tensor of additive biases to the filter outputs.
  883. * The data is stored in the order of: [out_channels].
  884. *\n
  885. *\n
  886. * The following are the supported data types and data formats:
  887. *\n
  888. *\n
  889. | Tensor | x | filter | offsets | bias | y |\n
  890. | :-------: | :-----: | :-----: | :-----: | :-----: | :-----: |\n
  891. | Data Type | float16 | float16 | float16 | float16 | float16 |\n
  892. | | float32 | float32 | float32 | float32 | float32 |\n
  893. | Format | NCHW | NCHW | NCHW | ND | NCHW |\n
  894. | | NHWC | HWCN | NCHW | | NHWC |\n
  895. *\n
  896. * For float32 type, the actual convolution calculation part on the chip is
  897. * based on float16.
  898. *\n
  899. *
  900. *@par Attributes:
  901. *@li strides: Required. A list of 4 integers. The stride of the sliding window
  902. * for each dimension of input. The dimension order is interpreted according to
  903. * the data format of "x". The N and C dimensions must be set to 1.
  904. *@li pads: Required. A list of 4 integers. The number of pixels to add to each
  905. * (top, bottom, left, right) side of the input.
  906. *@li dilations: Optional. A list of 4 integers. The dilation factor for each
  907. * dimension of input. The dimension order is interpreted according to the data
  908. * format of "x". The N and C dimensions must be set to 1. Defaults to
  909. * [1, 1, 1, 1].
  910. *@li groups: Optional. An integer of type int32. The number of blocked
  911. * connections from input channels to output channels. In_channels and
  912. * out_channels must both be divisible by "groups". Defaults to 1.
  913. *@li data_format: Reserved.
  914. *@li deformable_groups: Optional. An integer of type int32. The number of
  915. * deformable group partitions. In_channels must be divisible by
  916. * "deformable_groups". Defaults to 1.
  917. *@li modulated: Optional. Specify version of DeformableConv2D, true means v2,
  918. * false means v1, currently only support v2.
  919. *\n
  920. *\n
  921. * The following value range restrictions must be met:
  922. *\n
  923. *\n
  924. | Name | Field | Scope |\n
  925. | :--------------: | :------: | :-------------------------: |\n
  926. | Input Image Size | H | [1, 100000 / filter_height] |\n
  927. | | W | [1, 4096 / filter_width] |\n
  928. | Filter Size | H | [1, 63] |\n
  929. | | W | [1, 63] |\n
  930. *\n
  931. *
  932. *@par Outputs:
  933. * y: A 4D Tensor of output feature map. Has the same type as "x". With the
  934. * format "NHWC", the data is stored in the order of: [batch, out_height,
  935. * out_width, out_channels].
  936. *\n
  937. * out_height = (in_height + pad_top + pad_bottom -
  938. * (dilation_h * (filter_height - 1) + 1))
  939. * / stride_h + 1
  940. *\n
  941. * out_width = (in_width + pad_left + pad_right -
  942. * (dilation_w * (filter_width - 1) + 1))
  943. * / stride_w + 1
  944. *\n
  945. *
  946. *@par Quantization supported or not
  947. *@li No
  948. *
  949. *@par Third-party framework compatibility
  950. *@li Compatible with the Mxnet operator "DeformableConvolution".
  951. *@li Compatible with the Paddlepaddle operator "deformable_conv".
  952. *@li Compatible with the Mmcv operator "deform_conv".
  953. */
  954. REG_OP(DeformableConv2D)
  955. .INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT}))
  956. .INPUT(filter, TensorType({DT_FLOAT16, DT_FLOAT}))
  957. .INPUT(offsets, TensorType({DT_FLOAT16, DT_FLOAT}))
  958. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_FLOAT}))
  959. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT}))
  960. .REQUIRED_ATTR(strides, ListInt)
  961. .REQUIRED_ATTR(pads, ListInt)
  962. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  963. .ATTR(groups, Int, 1)
  964. .ATTR(data_format, String, "NHWC")
  965. .ATTR(deformable_groups, Int, 1)
  966. .ATTR(modulated, Bool, true)
  967. .OP_END_FACTORY_REG(DeformableConv2D)
  968. /**
  969. *@brief Computes a 3D convolution given 5D "x" and "filter" tensors.
  970. *@par Inputs:
  971. * @li x: A 5D tensor. Must be one of the following types: float16,
  972. * (Currently does not support int8). The format of x is NCDHW or NDHWC.
  973. * @li filter: A 5D tensor of the same type as "x".
  974. * (Currently does not support int8).
  975. * The format is NCDHW, NDHWC or DHWCN.
  976. * @li bias: Optional. An 1D tensor of the same type as "x".
  977. * @li offset_w: Optional. An 1D tensor for quantized deconvolution. Reserved. \n
  978. *@par Attributes:
  979. * @li strides: Required. A list of 5 integers. Specifies the stride of the sliding window
  980. * for each dimension of "x".
  981. * The N and C dimensions must be 1. Has the same format as "x".
  982. * @li pads: Required. A list of 6 integers.
  983. * Supports only padding along the D, H and W dimensions in sequence of head,
  984. * tail, top, bottom, left and right.
  985. * @li dilations: Optional. A list of 5 integers. Specifies the dilation factor for each
  986. * dimension of "x".
  987. * @li groups: Optional. Number of blocked connections from input channels to output
  988. * channels.
  989. * @li data_format: Optional. An string from: "NDHWC", "NCDHW".
  990. * Defaults to "NDHWC". Specify the data format of the input and output data.
  991. * The N, C and D dimensions must be 1. Has the same format as "x".
  992. * @li offset_x: Optional. An int. Input offset, used for quantized inference.
  993. * Defaults to 0. Reserved. \n
  994. *@par Outputs:
  995. * y: A Tensor. Has the same type and data format as "x". \n
  996. *@attention Constraints:
  997. * The image size after padding is greater than the filter size. \n
  998. *@par Third-party framework compatibility
  999. * @li Compatible with the TensorFlow operator conv3d.
  1000. * @li Compatible with the Caffe operator Convolution.
  1001. */
  1002. REG_OP(Conv3D)
  1003. .INPUT(x, TensorType({DT_FLOAT16}))
  1004. .INPUT(filter, TensorType({DT_FLOAT16}))
  1005. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_FLOAT32}))
  1006. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  1007. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT32}))
  1008. .REQUIRED_ATTR(strides, ListInt)
  1009. .REQUIRED_ATTR(pads, ListInt)
  1010. .ATTR(dilations, ListInt, {1, 1, 1, 1, 1})
  1011. .ATTR(groups, Int, 1)
  1012. .ATTR(data_format, String, "NDHWC")
  1013. .ATTR(offset_x, Int, 0)
  1014. .OP_END_FACTORY_REG(Conv3D)
  1015. /**
  1016. *@brief Computes the gradients of convolution 3d with respect to the input.
  1017. *@par Inputs:
  1018. * @li input_size: A Tensor of type int32, int64. An integer vector representing
  1019. * the shape of input, where input is a 5-D tensor
  1020. * [batch, depth, height, width, channels] or
  1021. * [batch, channels, depth, height, width].
  1022. * @li filter: A Tensor. Must be one of the following types: float16, float32.
  1023. * Currently does not support double.
  1024. * @li out_backprop: A Tensor. Must have the same type as filter.
  1025. * 5-D with shape [batch, depth, out_height, out_width, out_channels]
  1026. * or [batch, out_channels, depth, out_height, out_width]. Gradients with
  1027. * respect to the output of the convolution. \n
  1028. *@par Attributes:
  1029. * @li strides: Required. A list of 5 integers. Specifies the stride of the sliding window
  1030. * for each dimension of "out_backprop".
  1031. * The N and C dimensions must be 1. Has the same format as "out_backprop".
  1032. * @li pads: Required. A list of 6 integers.
  1033. * Supports only padding along the D, H and W dimensions in sequence of head,
  1034. * tail, top, bottom, left and right.
  1035. * @li dilations: Optional. A tuple/list of 5 integers, The dilation factor for each
  1036. * dimension of the input.
  1037. * The N, C and D dimensions must be 1. Has the same format as "out_backprop".
  1038. * @li groups: Optional. Number of blocked connections from input channels to output
  1039. * channels.
  1040. * @li data_format: Optional. An string from: "NDHWC", "NCDHW".
  1041. * Defaults to "NDHWC". Specify the data format of the input and output data. \n
  1042. *@par Outputs:
  1043. * y: A Tensor. Has the same type as filter,and has same format as "input_size". \n
  1044. *@par Third-party framework compatibility
  1045. * Compatible with Tensorflow's conv3d_backprop_input
  1046. */
  1047. REG_OP(Conv3DBackpropInput)
  1048. .INPUT(input_size, TensorType({DT_INT32, DT_INT64}))
  1049. .INPUT(filter, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  1050. .INPUT(out_backprop, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  1051. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  1052. .REQUIRED_ATTR(strides, ListInt)
  1053. .REQUIRED_ATTR(pads, ListInt)
  1054. .ATTR(dilations, ListInt, {1, 1, 1, 1, 1})
  1055. .ATTR(groups, Int, 1)
  1056. .ATTR(data_format, String, "NDHWC")
  1057. .OP_END_FACTORY_REG(Conv3DBackpropInput)
  1058. /**
  1059. *@brief Computes the gradients of convolution 3d with respect to the input.
  1060. *@par Inputs:
  1061. * @li filter: A Tensor whose type is float16. The format of filter is NCDHW,
  1062. * NDHWC or DHWCN.
  1063. * @li out_backprop: A Tensor. Must have the same type as filter. The format is
  1064. * NDHWC or NCDHW. \n
  1065. *@par Attributes:
  1066. * @li input_size: Required. A tuple/list of type int32, int64. An integer vector
  1067. * representing the shape of input, where input is a 5-D tensor
  1068. * [batch, depth, height, width, channels] or
  1069. * [batch, channels, depth, height, width].
  1070. * @li strides: Required. A list of 5 integers. Specifies the stride of the sliding window
  1071. * for each dimension of "out_backprop".
  1072. * The N and C dimensions must be 1. Has the same format as "out_backprop".
  1073. * @li pads: Required. A list of 6 integers. Supports only padding along the D, H and W
  1074. * dimensions in sequence of head, tail, top, bottom, left and right.
  1075. * @li dilations: Optional. A tuple/list of 5 integers, The dilation factor for each
  1076. * dimension of input.
  1077. * The N, C and D dimensions must be 1. Has the same format as "out_backprop".
  1078. * @li groups: Optional. Number of blocked connections from input channels to output
  1079. * channels.
  1080. * @li data_format: Optional. An string from: "NDHWC", "NCDHW".
  1081. * Defaults to "NDHWC". Specify the data format of the input and output data. \n
  1082. *@par Outputs:
  1083. * y: A Tensor. Has the same type and data format as "out_backprop". \n
  1084. *@par Third-party framework compatibility
  1085. * Compatible with Tensorflow's conv3d_backprop_input. \n
  1086. *@par Restrictions:
  1087. * Warning: THIS FUNCTION IS DEPRECATED. Please use Conv3DBackpropInput instead.
  1088. */
  1089. REG_OP(Conv3DBackpropInputD)
  1090. .INPUT(filter, TensorType({DT_FLOAT16}))
  1091. .INPUT(out_backprop, TensorType({DT_FLOAT16}))
  1092. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT32}))
  1093. .REQUIRED_ATTR(input_size, ListInt)
  1094. .REQUIRED_ATTR(strides, ListInt)
  1095. .REQUIRED_ATTR(pads, ListInt)
  1096. .ATTR(dilations, ListInt, {1, 1, 1, 1, 1})
  1097. .ATTR(groups, Int, 1)
  1098. .ATTR(data_format, String, "NDHWC")
  1099. .OP_END_FACTORY_REG(Conv3DBackpropInputD)
  1100. /**
  1101. *@brief Applies a multi-layer long short-term memory (LSTM) RNN to an input sequence . \n
  1102. *@par Inputs:
  1103. * @li x: A Tensor dtype of float16.
  1104. * @li cont: A Tensor dtype of float16, float32.
  1105. * @li w_x: A Tensor dtype of float16.
  1106. * @li bias: A Tensor dtype of int16, int32, float16, float32.
  1107. * @li w_h: A Tensor dtype of float16.
  1108. * @li x_static: A optinal Tensor dtype of float16.
  1109. * @li h_0: A optinal Tensor dtype of float16, float32.
  1110. * @li c_0: A optinal Tensor dtype of float16, float32.
  1111. * @li w_x_static: A optinal Tensor dtype of float16 . \n
  1112. *@par Attributes:
  1113. *@li num_output: A Scalar of output size dtype of int.
  1114. *@li expose_hidden: A Scalar(bool) of features hidden . \n
  1115. *@par Outputs:
  1116. *@li h: A Tensor dtype of float16, float32.
  1117. * @li h_t: A optinal Tensor dtype of float16, float32. The hidden state at time t.
  1118. * @li c_t: A optinal Tensor dtype of float16, float32. The cell state at time t . \n
  1119. *@par Third-party framework compatibility:
  1120. * Compatible with the Caffe operator LSTM.
  1121. */
  1122. REG_OP(LSTM)
  1123. .INPUT(x, TensorType({DT_FLOAT16}))
  1124. .INPUT(cont, TensorType({DT_FLOAT32,DT_FLOAT16}))
  1125. .INPUT(w_x, TensorType({DT_FLOAT16}))
  1126. .INPUT(bias, TensorType({DT_FLOAT16,DT_FLOAT32,DT_INT16,DT_INT32}))
  1127. .INPUT(w_h, TensorType({DT_FLOAT16}))
  1128. .OPTIONAL_INPUT(x_static, TensorType({DT_FLOAT16}))
  1129. .OPTIONAL_INPUT(h_0, TensorType({DT_FLOAT16,DT_FLOAT32}))
  1130. .OPTIONAL_INPUT(c_0, TensorType({DT_FLOAT16,DT_FLOAT32}))
  1131. .OPTIONAL_INPUT(w_x_static, TensorType({DT_FLOAT16}))
  1132. .OUTPUT(h, TensorType({DT_FLOAT16, DT_FLOAT}))
  1133. .OUTPUT(h_t, TensorType({DT_FLOAT16, DT_FLOAT}))
  1134. .OUTPUT(c_t, TensorType({DT_FLOAT16, DT_FLOAT}))
  1135. .ATTR(num_output, Int, 0)
  1136. .ATTR(expose_hidden, Bool, false)
  1137. .OP_END_FACTORY_REG(LSTM)
  1138. /**
  1139. *@brief Computes the gradients of convolution3D with respect to the filter
  1140. *@par Inputs:
  1141. * @li x: A Tensor. Must be one of the following types: float16, float32.
  1142. * Currently does not support double.
  1143. * 5-D with shape [batch, in_depth, in_height, in_width, in_channels]
  1144. * or [batch, in_channels, in_depth, in_height, in_width].
  1145. * @li filter_size: A Tensor of type int32. An integer vector representing the
  1146. * tensor shape of filter, where filter is a 5-D tensor
  1147. * [filter_depth, filter_height, filter_width, in_channels, out_channels]
  1148. * [out_channels, in_channels, filter_depth, filter_height, filter_width]
  1149. * or [out_channels, filter_depth, filter_height, filter_width, in_channels].
  1150. * @li out_backprop: A Tensor. Must have the same type as x.
  1151. * 5-D with shape [batch, out_depth, out_height, out_width, out_channels]
  1152. * or [batch, out_channels, out_depth, out_height, out_width].
  1153. * Gradients with respect to the output of the convolution. \n
  1154. *@par Attributes:
  1155. * @li strides: Required. A tuple/list of 5 integers. Specifies the stride of the sliding
  1156. * window for each dimension of "x". The N and C dimensions must be 1.
  1157. * Has the same format as "x".
  1158. * @li pads: Required. A tuple/list of 6 integers, [front, back, top, bottom, left, right]
  1159. * pads on feature map.
  1160. * @li dilations: Optional. A tuple/list of 5 integers, The dilation factor for each
  1161. * dimension of input.
  1162. * The N, C and D dimensions must be 1. Has the same format as "x".
  1163. * @li groups: Optional. Number of blocked connections from input channels to output
  1164. * channels.
  1165. * @li data_format: Optional. An string from: "NDHWC", "NCDHW".
  1166. * Defaults to "NDHWC". Specify the data format of the input and output data. \n
  1167. *@par Outputs:
  1168. * y: A Tensor that has the same type as "x" and the format is NDHWC, NCDHW or DHWCN. \n
  1169. *@par Third-party framework compatibility
  1170. * Compatible with Tensorflow's conv3d_backprop_filter
  1171. */
  1172. REG_OP(Conv3DBackpropFilter)
  1173. .INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  1174. .INPUT(filter_size, TensorType({DT_INT32}))
  1175. .INPUT(out_backprop, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  1176. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  1177. .REQUIRED_ATTR(strides, ListInt)
  1178. .REQUIRED_ATTR(pads, ListInt)
  1179. .ATTR(dilations, ListInt, {1, 1, 1, 1, 1})
  1180. .ATTR(groups, Int, 1)
  1181. .ATTR(data_format, String, "NDHWC")
  1182. .OP_END_FACTORY_REG(Conv3DBackpropFilter)
  1183. /**
  1184. *@brief Computes the gradients of convolution with respect to the filter.
  1185. *@par Inputs:
  1186. * @li x: A Tensor of type float16.
  1187. * 5-D with shape [batch, in_depth, in_height, in_width, in_channels]
  1188. * or [batch, in_channels, in_depth, in_height, in_width].
  1189. * @li out_backprop: A Tensor. Must have the same type as x.
  1190. * 5-D with shape [batch, out_depth, out_height, out_width, out_channels]
  1191. * or [batch, out_channels, out_depth, out_height, out_width].
  1192. * Gradients with respect to the output of the convolution. \n
  1193. *@par Attributes:
  1194. * @li filter_size: Required. A tuple/list of type integers. An integer vector
  1195. * representing the tensor shape of filter, where filter is a 5-D tensor
  1196. * [filter_depth, filter_height, filter_width, in_channels, out_channels],
  1197. * [out_channels, filter_depth, filter_height, filter_width, in_channels]
  1198. * or [out_channels, in_channels, filter_depth, filter_height, filter_width].
  1199. * @li strides: Required. A tuple/list of 5 integers. Specifies the stride of the sliding
  1200. * window for each dimension of "x".
  1201. * The N and C dimensions must be 1. Has the same format as "x".
  1202. * @li pads: Required. A tuple/list of 6 integers, [front, back, top, bottom, left, right]
  1203. * pads on feature map.
  1204. * @li dilations: Optional. A tuple/list of 5 integers, The dilation factor for each
  1205. * dimension of input.
  1206. * The N, C and D dimensions must be 1. Has the same format as "x".
  1207. * @li groups: Optional. Number of blocked connections from input channels to output
  1208. * channels.
  1209. * @li data_format: Optional. An optional string from: "NDHWC", "NCDHW".
  1210. * Defaults to "NDHWC". Specify the data format of the input and output data. \n
  1211. *@par Outputs:
  1212. * y: A Tensor of type float32 and the format is NDHWC, NCDHW or DHWCN. \n
  1213. *@par Third-party framework compatibility
  1214. * Compatible with Tensorflow's conv3d_backprop_filter. \n
  1215. *@par Restrictions:
  1216. * Warning: THIS FUNCTION IS DEPRECATED. Please use Conv3DBackpropFilter instead.
  1217. */
  1218. REG_OP(Conv3DBackpropFilterD)
  1219. .INPUT(x, TensorType({DT_FLOAT16}))
  1220. .INPUT(out_backprop, TensorType({DT_FLOAT16}))
  1221. .OUTPUT(y, TensorType({DT_FLOAT}))
  1222. .REQUIRED_ATTR(filter_size, ListInt)
  1223. .REQUIRED_ATTR(strides, ListInt)
  1224. .REQUIRED_ATTR(pads, ListInt)
  1225. .ATTR(dilations, ListInt, {1, 1, 1, 1, 1})
  1226. .ATTR(groups, Int, 1)
  1227. .ATTR(data_format, String, "NDHWC")
  1228. .OP_END_FACTORY_REG(Conv3DBackpropFilterD)
  1229. /**
  1230. *@brief Computes the transpose of convolution 3d with respect to the input.
  1231. *@par Inputs:
  1232. * @li input_size: A Tensor of type int32. An integer vector representing the
  1233. * shape of input.
  1234. * @li x: A Tensor of type float16, currently does not support int8. The format
  1235. * is NDHWC or NCDHW.
  1236. * @li filter: A Tensor of type float16, currently does not support int8.
  1237. * The format is NDHWC, NCDHW or DHWCN.
  1238. * @li bias: Optional. An optional 1D tensor of the same type as "x". Reserved.
  1239. * @li offset_w: Optional. An optional 1D tensor for quantized deconvolution. Reserved. \n
  1240. *@par Attributes:
  1241. * @li strides: Required. A tuple/list of 5 integers. Specifies the stride of the sliding
  1242. * window for each dimension of "x".
  1243. * The N and C dimensions must be 1. Has the same format as "x".
  1244. * @li pads: Required. A tuple/list of 6 integers.
  1245. * @li dilations: Optional. A tuple/list of 5 integers,
  1246. * The dilation factor for each dimension of input.
  1247. * The N, C and D dimensions must be 1. Has the same format as "x".
  1248. * @li groups: Optional. Number of blocked connections from input channels to output
  1249. * channels.
  1250. * @li data_format: Optional. An string from: "NDHWC", "NCDHW".
  1251. * Defaults to "NDHWC". Specify the data format of the input and output data.
  1252. * @li output_padding: Optional. The size will be added in the output shape.
  1253. * @li offset_x: Optional. Input offset_x value. Reserved. \n
  1254. *@par Outputs:
  1255. * y: A Tensor. Has the same type and format as "x".
  1256. */
  1257. REG_OP(Conv3DTranspose)
  1258. .INPUT(input_size, TensorType({DT_INT32, DT_INT64}))
  1259. .INPUT(x, TensorType({DT_FLOAT16}))
  1260. .INPUT(filter, TensorType({DT_FLOAT16}))
  1261. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_FLOAT32}))
  1262. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  1263. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT32}))
  1264. .REQUIRED_ATTR(strides, ListInt)
  1265. .REQUIRED_ATTR(pads, ListInt)
  1266. .ATTR(dilations, ListInt, {1, 1, 1, 1, 1})
  1267. .ATTR(groups, Int, 1)
  1268. .ATTR(data_format, String, "NDHWC")
  1269. .ATTR(output_padding, ListInt, {0, 0, 0, 0, 0})
  1270. .ATTR(offset_x, Int, 0)
  1271. .OP_END_FACTORY_REG(Conv3DTranspose)
  1272. /**
  1273. *@brief Computes the transpose of convolution 3d with respect to the input.
  1274. *@par Inputs:
  1275. * @li x: A Tensor of type float16, currently does not support int8.
  1276. * The format is NDHWC or NCDHW.
  1277. * @li filter: A Tensor of type float16, currently does not support int8.
  1278. * The format is NDHWC, NCDHW or DHWCN.
  1279. * @li bias: Optional. An 1D tensor of the same type as "x". Reserved.
  1280. * @li offset_w: Optional. An 1D tensor for quantized deconvolution. Reserved. \n
  1281. *@par Attributes:
  1282. * @li input_size: Required. A tuple/list of type int32.
  1283. * An integer vector representing the shape of input.
  1284. * @li strides: Required. A tuple/list of 5 integers.
  1285. * Specifies the stride of the sliding window for each dimension of "x".
  1286. * The N and C dimensions must be 1. Has the same format as "x".
  1287. * @li pads: Required. A tuple/list of 6 integers.
  1288. * @li dilations: Optional. A tuple/list of 5 integers, The dilation factor for each
  1289. * dimension of input.
  1290. * The N, C and D dimensions must be 1. Has the same format as "x".
  1291. * @li groups: Optional. Number of blocked connections from input channels to output
  1292. * channels.
  1293. * @li data_format: Optional. An optional string from: "NDHWC", "NCDHW".
  1294. * Defaults to "NDHWC". Specify the data format of the input and output data.
  1295. * @li output_padding: Optional. The size will be added in the output shape.
  1296. * @li offset_x: Optional. Input offset_x value. Reserved. \n
  1297. *@par Outputs:
  1298. * y: A Tensor. Has the same type and format as "x". \n
  1299. *@par Restrictions:
  1300. * Warning: THIS FUNCTION IS DEPRECATED. Please use Conv3DTranspose instead.
  1301. */
  1302. REG_OP(Conv3DTransposeD)
  1303. .INPUT(x, TensorType({DT_FLOAT16}))
  1304. .INPUT(filter, TensorType({DT_FLOAT16}))
  1305. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_FLOAT32}))
  1306. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  1307. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT32}))
  1308. .REQUIRED_ATTR(input_size, ListInt)
  1309. .REQUIRED_ATTR(strides, ListInt)
  1310. .REQUIRED_ATTR(pads, ListInt)
  1311. .ATTR(dilations, ListInt, {1, 1, 1, 1, 1})
  1312. .ATTR(groups, Int, 1)
  1313. .ATTR(data_format, String, "NDHWC")
  1314. .ATTR(output_padding, ListInt, {0, 0, 0, 0, 0})
  1315. .ATTR(offset_x, Int, 0)
  1316. .OP_END_FACTORY_REG(Conv3DTransposeD)
  1317. /**
  1318. *@brief Computes the transpose of convolution 2d with respect to the input.
  1319. *@par Inputs:
  1320. * Five inputs:
  1321. * @li input_size: A Tensor of type int32 or int64. An integer vector
  1322. * representing the shape of input, where input is a 4-D tensor
  1323. * [batch, height, width, channels] or [batch, channels, height, width].
  1324. * @li x: A Tensor of type float16, int8. 4-D with shape [batch, out_height,
  1325. * out_width, out_channels] or [batch, out_channels, out_height, out_width].
  1326. * @li filter: A Tensor of type float16, int8. Must have the same type as "x".
  1327. * 4-D with shape [filter_height, filter_width, in_channels, out_channels]
  1328. * or [out_channels, filter_height, filter_width, in_channels]
  1329. * or [out_channels, in_channel, filter_height, filter_width].
  1330. * @li bias: An optional 1D tensor of type float16 or int32. Format is "ND".
  1331. * @li offset_w: An optional 1D tensor for quantized inference. Reserved.
  1332. *\n
  1333. *\n
  1334. * The following are the supported data types and data formats:\n
  1335. *\n
  1336. *\n
  1337. | Tensor | x | filter | bias | y |\n
  1338. |-----------|---------|---------|---------|--------|\n
  1339. | Data Type | float16 | float16 | float16 | float16|\n
  1340. | | int8 | int8 | int32 | int32 |\n
  1341. | Format | NCHW | NCHW | ND | NCHW |\n
  1342. | | NHWC | HWCN | | NHWC |\n
  1343. *\n
  1344. * For int8, a dequant or requant operator must be followed.
  1345. *\n
  1346. *
  1347. *@par Required Attributes:
  1348. * @li strides: A required tuple/list of 4 integers. The stride of the sliding
  1349. * window for H/W dimension. The index of H/W is same as data_format.
  1350. * @li pads: A required tuple/list of 4 integers, [top, bottom, left, right]
  1351. * pads on feature map.
  1352. *@par Attributes:
  1353. * Five attributes:
  1354. * @li groups: Number of blocked connections from input channels to output
  1355. * channels.
  1356. * Defaults to "1".
  1357. * @li dilations: A tuple/list of 4 integers, The dilation factor for each
  1358. * dimension of input. Must be [1, 1, 1, 1].
  1359. * @li data_format: An optional string from: "NHWC", "NCHW". Defaults to "NHWC".
  1360. * Specify the data format of the input and output data.
  1361. * @li output_padding: The size will be added in the output shape. Defaults
  1362. * to [0, 0, 0, 0].
  1363. * @li offset_x: An optional int. Input offset, used for quantized inference.
  1364. * The negative offset added to the input image for int8 type. Ensure offset_x
  1365. * within the effective range of int8 [-128, 127]. Defaults to "0".
  1366. *\n
  1367. *\n
  1368. * The following value range restrictions must be met:\n
  1369. *\n
  1370. *\n
  1371. | Name | Field | Scope |\n
  1372. |------------------|----------|--------------|\n
  1373. | input_size | H | [1, 200000] |\n
  1374. | | W | [1, 4096] |\n
  1375. | x (out_backprop) | H*strideH| [1, 200000] |\n
  1376. | | W*strideW| [1, 4096] |\n
  1377. | filter | H | [1, 255] |\n
  1378. | | W | [1, 255] |\n
  1379. | y (fmap) | H | [1, 200000] |\n
  1380. | | W | [1, 4096] |\n
  1381. | Stride | H | [1, 63] |\n
  1382. | | W | [1, 63] |\n
  1383. | Padding | Top | [0, 255] |\n
  1384. | | Bottom | [0, 255] |\n
  1385. | | Left | [0, 255] |\n
  1386. | | Right | [0, 255] |\n
  1387. | Dilation | H | [1, 255] |\n
  1388. | | W | [1, 255] |\n
  1389. | Offset_x | | [-128, 127] |\n
  1390. *\n
  1391. * In Ascend910, fmap or out_backprop's H and W not support 1 when
  1392. * fmap_h + pad_top + pad_bottom != (filter_height - 1) * dilation_h + 1
  1393. * and filter_width > fmap_width
  1394. * If filter_h = 1 and filter_w = 1, out_backprop_w * stride_h * stride_w < 4096
  1395. *\n
  1396. *
  1397. *@par Outputs:
  1398. * y: A Tensor. A Tensor of type float16 or int32, and has same format as
  1399. * input_size.
  1400. *\n
  1401. * out_backprop_height = (fmap_height + pad_top + pad_bottom -
  1402. * (dilation_h * (filter_height - 1) + 1))
  1403. * / stride_h + 1
  1404. *\n
  1405. * out_backprop_width = (fmap_width + pad_left + pad_right -
  1406. * (dilation_w * (filter_width - 1) + 1))
  1407. * / stride_w + 1
  1408. *\n
  1409. *
  1410. */
  1411. REG_OP(Conv2DTranspose)
  1412. .INPUT(input_size, TensorType({DT_INT32, DT_INT64}))
  1413. .INPUT(x, TensorType({DT_FLOAT16, DT_INT8}))
  1414. .INPUT(filter, TensorType({DT_FLOAT16, DT_INT8}))
  1415. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_INT32, DT_FLOAT32}))
  1416. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  1417. .OUTPUT(y, TensorType({DT_FLOAT16, DT_INT32, DT_FLOAT32}))
  1418. .REQUIRED_ATTR(strides, ListInt)
  1419. .REQUIRED_ATTR(pads, ListInt)
  1420. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  1421. .ATTR(groups, Int, 1)
  1422. .ATTR(data_format, String, "NHWC")
  1423. .ATTR(output_padding, ListInt, {0, 0, 0, 0})
  1424. .ATTR(offset_x, Int, 0)
  1425. .OP_END_FACTORY_REG(Conv2DTranspose)
  1426. /**
  1427. *@brief Computes the transpose of convolution 2d with respect to the input.
  1428. *@par Inputs:
  1429. * Four inputs:
  1430. * @li x: A Tensor of type float16, int8.
  1431. * @li filter: A Tensor of type float16, int8. Must have the same type as "x".
  1432. * @li bias: An optional 1D tensor of the same type as "x".
  1433. * @li offset_w: An optional 1D tensor for quantized inference. Type is int8. Reserved.
  1434. *@par Required Attributes:
  1435. * @li input_size: A Tensor of type int32 or int64. An integer vector representing the
  1436. * shape of input.
  1437. * @li strides: A required list or tuple. The stride of the sliding window for
  1438. * height and width for H/W dimension.
  1439. * @li pads: A required list or tuple of int32. Padding added to each dimension
  1440. * of the input.
  1441. *@par Attributes:
  1442. * Five attributes:
  1443. * @li groups: Number of blocked connections from input channels to output channels.
  1444. * Defaults to "1".
  1445. * @li dilations: A tuple/list of 4 integers, The dilation factor for each dimension
  1446. * of input. Must be [1, 1, 1, 1].
  1447. * @li data_format: An optional string from: "NHWC", "NCHW". Defaults to "NHWC".
  1448. * Specify the data format of the input and output data.
  1449. * @li output_padding: The size will be added in the output shape. Defaults
  1450. * to [0, 0, 0, 0].
  1451. * @li offset_x: An optional int. Input offset, used for quantized inference.
  1452. * Defaults to "0".
  1453. *@par Outputs:
  1454. * y: A Tensor. Has the same type as "filter".
  1455. *@par Restrictions:
  1456. * Warning: THIS FUNCTION IS DEPRECATED. Please use Conv2DTranspose instead.
  1457. */
  1458. REG_OP(Conv2DTransposeD)
  1459. .INPUT(x, TensorType({DT_FLOAT16, DT_INT8}))
  1460. .INPUT(filter, TensorType({DT_FLOAT16, DT_INT8}))
  1461. .OPTIONAL_INPUT(bias, TensorType({DT_FLOAT16, DT_INT32, DT_FLOAT32}))
  1462. .OPTIONAL_INPUT(offset_w, TensorType({DT_INT8}))
  1463. .OUTPUT(y, TensorType({DT_FLOAT16, DT_INT32, DT_FLOAT32}))
  1464. .REQUIRED_ATTR(input_size, ListInt)
  1465. .REQUIRED_ATTR(strides, ListInt)
  1466. .REQUIRED_ATTR(pads, ListInt)
  1467. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  1468. .ATTR(groups, Int, 1)
  1469. .ATTR(data_format, String, "NHWC")
  1470. .ATTR(output_padding, ListInt, {0, 0, 0, 0})
  1471. .ATTR(offset_x, Int, 0)
  1472. .OP_END_FACTORY_REG(Conv2DTransposeD)
  1473. /**
  1474. *@brief Computes the deformed convolution output with the expected input
  1475. *@par Inputs:
  1476. * Two inputs:
  1477. * @li x: A Tensor of type float16,float32
  1478. * @li offsets: A Tensor of type float16,float32.Deformation offset parameter.
  1479. *@par Attributes:
  1480. * @li strides: A tuple/list of 4 integers.The stride of the sliding window for
  1481. * height and width for H/W dimension.
  1482. * @li pads: A tuple/list of 4 integers.Padding added to H/W dimension
  1483. * of the input.
  1484. * @li ksize: A tuple/list of 2 integers.kernel size.
  1485. * @li dilations: A tuple/list of 4 integers, The dilation factor for each dimension
  1486. * of input. Defaults to [1, 1, 1, 1]
  1487. * @li data_format: An optional string from: "NCHW", "NHWC". Defaults to "NCHW". Specify the data format of the input x.
  1488. * @li deformable_groups: Specify the c-axis grouping number of input x.
  1489. * @li modulated: Specify version of DeformableConv2D, true means v2, false means v1
  1490. *@par Outputs:
  1491. * y: A Tensor. A Tensor of type float16, float32.
  1492. */
  1493. REG_OP(DeformableOffsets)
  1494. .INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT}))
  1495. .INPUT(offsets, TensorType({DT_FLOAT16, DT_FLOAT}))
  1496. .OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT}))
  1497. .REQUIRED_ATTR(strides, ListInt)
  1498. .REQUIRED_ATTR(pads, ListInt)
  1499. .REQUIRED_ATTR(ksize, ListInt)
  1500. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  1501. .ATTR(data_format, String, "NCHW")
  1502. .ATTR(deformable_groups, Int, 1)
  1503. .ATTR(modulated, Bool, true)
  1504. .OP_END_FACTORY_REG(DeformableOffsets)
  1505. /**
  1506. *@brief Computes the gradients of DeformableOffsets with respect to input and offsets
  1507. *@par Inputs:
  1508. * Three inputs:
  1509. * @li grad: A Tensor of type float16,float32. gradients with respect to DeformableOffsets output
  1510. * @li x: A Tensor of type float16,float32.
  1511. * @li offsets: A Tensor of type float16,float32.Deformation offset parameter.
  1512. *@par Attributes:
  1513. * @li strides: A tuple/list of 4 integers.The stride of the sliding window for
  1514. * height and width for H/W dimension.
  1515. * @li pads: A tuple/list of 4 integers.Padding added to H/W dimension
  1516. * of the input.
  1517. * @li ksize: A tuple/list of 2 integers.kernel size.
  1518. * @li dilations: A tuple/list of 4 integers, The dilation factor for each dimension
  1519. * of input. Defaults to [1, 1, 1, 1]
  1520. * @li data_format: An optional string from: "NCHW", "NHWC". Defaults to "NCHW". Specify the data format of the input x.
  1521. * @li deformable_groups: Specify the c-axis grouping number of input x.
  1522. * @li modulated: Specify version of DeformableConv2D, true means v2, false means v1.
  1523. *@par Outputs:
  1524. * @li grad_x: A Tensor of type float16, float32. Gradients with respect to input_x
  1525. * @li grad_offsets: A Tensor of type float16, float32. Gradients with respect to input_offsets
  1526. */
  1527. REG_OP(DeformableOffsetsGrad)
  1528. .INPUT(grad, TensorType({DT_FLOAT16, DT_FLOAT}))
  1529. .INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT}))
  1530. .INPUT(offsets, TensorType({DT_FLOAT16, DT_FLOAT}))
  1531. .OUTPUT(grad_x, TensorType({DT_FLOAT16, DT_FLOAT}))
  1532. .OUTPUT(grad_offsets, TensorType({DT_FLOAT16, DT_FLOAT}))
  1533. .REQUIRED_ATTR(strides, ListInt)
  1534. .REQUIRED_ATTR(pads, ListInt)
  1535. .REQUIRED_ATTR(ksize, ListInt)
  1536. .ATTR(dilations, ListInt, {1, 1, 1, 1})
  1537. .ATTR(data_format, String, "NCHW")
  1538. .ATTR(deformable_groups, Int, 1)
  1539. .ATTR(modulated, Bool, true)
  1540. .OP_END_FACTORY_REG(DeformableOffsetsGrad)
  1541. /**
  1542. *@brief Computes the deformed dilation output with the expected input
  1543. *@par Inputs:
  1544. * One inputs:
  1545. * x: A Tensor of type int8, float16, float32
  1546. *@par Attributes:
  1547. * @li dilations: A tuple/list of integers.
  1548. * @li padding_value: default value filling in blank
  1549. * @li pads: A tuple/list of integers.
  1550. *@par Outputs:
  1551. * y: A Tensor. A Tensor of type int8, float16, float32.
  1552. */
  1553. REG_OP(Dilation)
  1554. .INPUT(x, TensorType({DT_INT8, DT_FLOAT16, DT_FLOAT}))
  1555. .OUTPUT(y, TensorType({DT_INT8, DT_FLOAT16, DT_FLOAT}))
  1556. .REQUIRED_ATTR(dilations, ListInt)
  1557. .ATTR(pads, ListInt, {})
  1558. .ATTR(padding_value, Float, 0.0)
  1559. .OP_END_FACTORY_REG(Dilation)
  1560. /**
  1561. *@brief Computes the post-cube processing output with the expected input
  1562. *@par Inputs:
  1563. * Ten inputs:
  1564. * x1: A Tensor of type float16, bfloat16, float32, int32
  1565. * x2: A Tensor of type float16, int8, int4
  1566. * quant_scale_0: A Tensor of type uint64
  1567. * relu_weight_0: A Tensor of type float32
  1568. * clip_value_0: A Tensor of type float16, int8, int4
  1569. * quant_scale_1: A Tensor of type uint64
  1570. * relu_weight_1: A Tensor of type float32
  1571. * clip_value_1: A Tensor of type float16
  1572. * anti_quant_scale: A Tensor of type float16
  1573. * anti_quant_offset: A Tensor of type int8, int4
  1574. *@par Attributes:
  1575. * @li fusion_op_list: A list of String.
  1576. * @li unit_list: A list of String
  1577. * @li eltwise_mode: An optional string from "ADD", "SUB" and "".
  1578. *@par Outputs:
  1579. * output: A Tensor. A Tensor of type float16, bfloat16, float32, int32, int8, int4.
  1580. */
  1581. REG_OP(FixPipe)
  1582. .INPUT(x1, TensorType({DT_FLOAT16, DT_BF16, DT_FLOAT, DT_INT32}))
  1583. .OPTIONAL_INPUT(x2, TensorType({DT_FLOAT16, DT_INT8, DT_INT4}))
  1584. .OPTIONAL_INPUT(quant_scale_0, TensorType({DT_UINT64}))
  1585. .OPTIONAL_INPUT(relu_weight_0, TensorType({DT_FLOAT}))
  1586. .OPTIONAL_INPUT(clip_value_0, TensorType({DT_FLOAT16, DT_INT8, DT_INT4}))
  1587. .OPTIONAL_INPUT(quant_scale_1, TensorType({DT_UINT64}))
  1588. .OPTIONAL_INPUT(relu_weight_1, TensorType({DT_FLOAT}))
  1589. .OPTIONAL_INPUT(clip_value_1, TensorType({DT_FLOAT16}))
  1590. .OPTIONAL_INPUT(anti_quant_scale, TensorType({DT_FLOAT16}))
  1591. .OPTIONAL_INPUT(anti_quant_offset, TensorType({DT_INT8, DT_INT4}))
  1592. .OUTPUT(output, TensorType({DT_FLOAT16, DT_BF16, DT_FLOAT, DT_INT32, DT_INT8, DT_INT4}))
  1593. .REQUIRED_ATTR(fusion_op_list, ListString)
  1594. .REQUIRED_ATTR(unit_list, ListString)
  1595. .ATTR(eltwise_mode, String, "")
  1596. .OP_END_FACTORY_REG(FixPipe)
  1597. /**
  1598. * @brief Solves a batch of isotonic regression problems. \n
  1599. * @par Inputs:
  1600. * @li input: A Tensor. \n
  1601. * @par Attributes:
  1602. * @li output_dtype: The data type of output. \n
  1603. * @par Outputs:
  1604. * @li output: A Tensor. A Tensor of type float16, float32, double.
  1605. * @li segments: A Tensor. A Tensor of type int32 \n
  1606. */
  1607. REG_OP(IsotonicRegression)
  1608. .INPUT(input, TensorType::RealNumberType())
  1609. .OUTPUT(output, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE}))
  1610. .OUTPUT(segments, TensorType({DT_INT32}))
  1611. .ATTR(output_dtype, Type, DT_FLOAT)
  1612. .OP_END_FACTORY_REG(IsotonicRegression)
  1613. } // namespace ge
  1614. #endif // OPS_BUILT_IN_OP_PROTO_INC_NN_CALCULATION_OPS_H_

图引擎模块(GE)是MindSpore的一个子模块,其代码由C++实现,位于前端模块ME和底层硬件之间,起到承接作用。图引擎模块以ME下发的图作为输入,然后进行一系列的深度图优化操作,最后输出一张可以在底层硬件上高效运行的图。GE针对昇腾AI处理器的硬件结构特点,做了特定的优化工作,以此来充分发挥出昇腾AI处理器的强大算力。在进行模型训练/推理时,GE会被自动调用而用户并不感知。GE主要由GE API和GE Core两部分组成,详细的架构图如下所示