mindspore 2.6.0rc1__cp311-none-any.whl → 2.7.0__cp311-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mindspore might be problematic. Click here for more details.

Files changed (4997) hide show
  1. mindspore/.commit_id +1 -1
  2. mindspore/Third_Party_Open_Source_Software_Notice +1290 -0
  3. mindspore/__init__.py +2 -2
  4. mindspore/_c_dataengine.cpython-311-aarch64-linux-gnu.so +0 -0
  5. mindspore/_c_expression.cpython-311-aarch64-linux-gnu.so +0 -0
  6. mindspore/_c_mindrecord.cpython-311-aarch64-linux-gnu.so +0 -0
  7. mindspore/_checkparam.py +42 -11
  8. mindspore/_extends/builtin_operations.py +3 -3
  9. mindspore/_extends/optimize/__init__.py +23 -0
  10. mindspore/_extends/optimize/cell_utils.py +96 -0
  11. mindspore/_extends/parallel_compile/akg_compiler/custom.py +1109 -0
  12. mindspore/_extends/parallel_compile/akg_compiler/gen_custom_op_files.py +1 -1
  13. mindspore/_extends/parse/__init__.py +3 -3
  14. mindspore/_extends/parse/compile_config.py +44 -22
  15. mindspore/_extends/parse/deprecated/deprecated_tensor_method.py +1 -2
  16. mindspore/_extends/parse/parser.py +65 -84
  17. mindspore/_extends/parse/resources.py +39 -0
  18. mindspore/_extends/parse/standard_method.py +58 -14
  19. mindspore/_extends/parse/trope.py +8 -1
  20. mindspore/_extends/pijit/__init__.py +1 -2
  21. mindspore/_extends/pijit/pijit_func_white_list.py +2 -5
  22. mindspore/amp.py +4 -22
  23. mindspore/boost/adasum.py +1 -1
  24. mindspore/boost/boost_cell_wrapper.py +4 -4
  25. mindspore/common/__init__.py +43 -12
  26. mindspore/common/_grad_function.py +2 -1
  27. mindspore/common/_pijit_context.py +28 -7
  28. mindspore/common/_stub_tensor.py +1 -209
  29. mindspore/common/_tensor_cpp_method.py +1 -1
  30. mindspore/common/_tensor_docs.py +3209 -3084
  31. mindspore/common/_utils.py +9 -1
  32. mindspore/common/api.py +377 -203
  33. mindspore/common/dtype.py +108 -57
  34. mindspore/common/dump.py +11 -16
  35. mindspore/common/dynamic_shape/__init__.py +0 -0
  36. mindspore/common/dynamic_shape/auto_dynamic_shape.py +498 -0
  37. mindspore/common/dynamic_shape/enable_dynamic.py +197 -0
  38. mindspore/common/file_system.py +59 -9
  39. mindspore/common/generator.py +5 -3
  40. mindspore/common/hook_handle.py +33 -5
  41. mindspore/common/jit_config.py +1 -1
  42. mindspore/common/jit_trace.py +84 -105
  43. mindspore/common/np_dtype.py +3 -3
  44. mindspore/common/parameter.py +27 -29
  45. mindspore/common/recompute.py +5 -7
  46. mindspore/common/sparse_tensor.py +0 -3
  47. mindspore/common/symbol.py +0 -1
  48. mindspore/common/tensor.py +117 -131
  49. mindspore/communication/_comm_helper.py +46 -4
  50. mindspore/communication/management.py +79 -7
  51. mindspore/context.py +67 -55
  52. mindspore/dataset/__init__.py +1 -1
  53. mindspore/dataset/audio/transforms.py +1 -1
  54. mindspore/dataset/core/config.py +38 -4
  55. mindspore/dataset/engine/datasets.py +350 -322
  56. mindspore/dataset/engine/datasets_user_defined.py +70 -24
  57. mindspore/dataset/engine/iterators.py +2 -2
  58. mindspore/dataset/engine/obs/config_loader.py +2 -2
  59. mindspore/dataset/engine/obs/obs_mindrecord_dataset.py +8 -0
  60. mindspore/dataset/transforms/c_transforms.py +2 -2
  61. mindspore/dataset/transforms/py_transforms.py +7 -3
  62. mindspore/dataset/transforms/transforms.py +10 -6
  63. mindspore/dataset/vision/__init__.py +1 -1
  64. mindspore/dataset/vision/py_transforms.py +8 -8
  65. mindspore/dataset/vision/transforms.py +17 -5
  66. mindspore/dataset/vision/utils.py +632 -21
  67. mindspore/dataset/vision/validators.py +1 -0
  68. mindspore/device_context/ascend/device.py +1 -1
  69. mindspore/device_context/ascend/op_tuning.py +35 -1
  70. mindspore/device_context/gpu/__init__.py +2 -2
  71. mindspore/device_context/gpu/device.py +1 -1
  72. mindspore/device_context/gpu/op_precision.py +4 -2
  73. mindspore/device_context/gpu/op_tuning.py +6 -3
  74. mindspore/device_manager.py +16 -9
  75. mindspore/experimental/llm_boost/ascend_native/llama_boost_ascend_native.py +3 -4
  76. mindspore/experimental/llm_boost/atb/boost_base.py +2 -3
  77. mindspore/experimental/optim/adadelta.py +13 -20
  78. mindspore/experimental/optim/adagrad.py +15 -22
  79. mindspore/experimental/optim/adam.py +17 -24
  80. mindspore/experimental/optim/adamax.py +14 -22
  81. mindspore/experimental/optim/adamw.py +28 -34
  82. mindspore/experimental/optim/asgd.py +15 -25
  83. mindspore/experimental/optim/lr_scheduler.py +27 -45
  84. mindspore/experimental/optim/nadam.py +14 -24
  85. mindspore/experimental/optim/optimizer.py +13 -23
  86. mindspore/experimental/optim/radam.py +18 -24
  87. mindspore/experimental/optim/rmsprop.py +14 -25
  88. mindspore/experimental/optim/rprop.py +15 -26
  89. mindspore/experimental/optim/sgd.py +9 -19
  90. mindspore/hal/__init__.py +4 -4
  91. mindspore/hal/contiguous_tensors_handle.py +2 -2
  92. mindspore/hal/memory.py +27 -7
  93. mindspore/include/api/cell.h +65 -5
  94. mindspore/include/api/cfg.h +24 -7
  95. mindspore/include/api/context.h +1 -0
  96. mindspore/include/api/delegate.h +10 -2
  97. mindspore/include/api/dual_abi_helper.h +100 -19
  98. mindspore/include/api/graph.h +14 -1
  99. mindspore/include/api/kernel.h +16 -3
  100. mindspore/include/api/kernel_api.h +9 -1
  101. mindspore/include/api/metrics/accuracy.h +9 -0
  102. mindspore/include/api/model.h +8 -1
  103. mindspore/include/api/model_group.h +4 -0
  104. mindspore/include/api/model_parallel_runner.h +2 -0
  105. mindspore/include/api/status.h +48 -10
  106. mindspore/include/api/types.h +8 -3
  107. mindspore/include/c_api/model_c.h +0 -58
  108. mindspore/include/c_api/tensor_c.h +0 -26
  109. mindspore/include/dataset/constants.h +9 -0
  110. mindspore/include/dataset/vision_ascend.h +1 -1
  111. mindspore/include/mindapi/base/type_id.h +3 -0
  112. mindspore/include/mindapi/base/types.h +7 -0
  113. mindspore/include/mindspore/ccsrc/availability/silent_check/silent_check.h +3 -4
  114. mindspore/include/mindspore/ccsrc/backend/backend_manager/backend_jit_config.h +47 -4
  115. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/adapter/graph_kernel_cluster_cloud.h +1 -0
  116. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/adapter/graph_kernel_comm_info_manager.h +1 -1
  117. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/core/eliminate_redundant_output.h +1 -0
  118. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/core/graph_kernel_expander.h +1 -1
  119. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/core/graph_kernel_utils.h +25 -1
  120. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/core/update_state_formatter.h +2 -1
  121. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/depend_edge_elimination.h +61 -0
  122. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/graph_kernel_flags.h +10 -1
  123. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/model/lite_graph.h +1 -1
  124. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/model/node.h +5 -6
  125. mindspore/include/mindspore/ccsrc/backend/common/mem_reuse/mem_reuse.h +1 -2
  126. mindspore/include/mindspore/ccsrc/backend/common/mem_reuse/mem_reuse_checker.h +0 -1
  127. mindspore/include/mindspore/ccsrc/backend/common/mem_reuse/mem_swap_manager.h +0 -1
  128. mindspore/include/mindspore/ccsrc/backend/common/optimizer/cache_manager.h +1 -1
  129. mindspore/include/mindspore/ccsrc/backend/common/optimizer/dynamic_shape/convert_custom_op.h +2 -2
  130. mindspore/include/mindspore/ccsrc/backend/common/optimizer/dynamic_shape/link_custom_op.h +1 -1
  131. mindspore/include/mindspore/ccsrc/backend/common/pass/add_attr_to_node/add_attr_to_node_register.h +1 -3
  132. mindspore/include/mindspore/ccsrc/backend/common/pass/adjust_depend_for_parallel_optimizer_recompute_all_gather.h +1 -1
  133. mindspore/include/mindspore/ccsrc/backend/common/pass/convert_list_to_tuple.h +2 -1
  134. mindspore/include/mindspore/ccsrc/backend/common/pass/custom_defined_depend.h +1 -3
  135. mindspore/include/mindspore/ccsrc/backend/common/pass/gradients_allreduce_depend_last_send.h +1 -2
  136. mindspore/include/mindspore/ccsrc/backend/common/pass/graph_view_replace_pass.h +1 -1
  137. mindspore/include/mindspore/ccsrc/backend/common/pass/insert_tensor_move_for_communication.h +2 -1
  138. mindspore/include/mindspore/ccsrc/backend/common/pass/ir_fusion/flash_attention_fusion.h +72 -0
  139. mindspore/include/mindspore/ccsrc/backend/common/pass/label_1f1b_overlap_node.h +1 -1
  140. mindspore/include/mindspore/ccsrc/backend/common/pass/mindir/add_depend_for_adamw.h +1 -3
  141. mindspore/include/mindspore/ccsrc/backend/common/pass/mindir/all_to_all_unify_mindir.h +8 -0
  142. mindspore/include/mindspore/ccsrc/backend/common/pass/optimize_gradients_allreduce_overlap.h +1 -1
  143. mindspore/include/mindspore/ccsrc/backend/common/pass/replace_node_by_proxy.h +1 -0
  144. mindspore/include/mindspore/ccsrc/backend/common/session/exec_order_builder.h +0 -2
  145. mindspore/include/mindspore/ccsrc/backend/common/session/executor.h +0 -41
  146. mindspore/include/mindspore/ccsrc/backend/common/session/kernel_graph_mgr.h +14 -10
  147. mindspore/include/mindspore/ccsrc/backend/common/session/session_basic.h +15 -31
  148. mindspore/include/mindspore/ccsrc/backend/common/somas/somas.h +1 -1
  149. mindspore/include/mindspore/ccsrc/backend/common/somas/somas_node.h +8 -2
  150. mindspore/include/mindspore/ccsrc/backend/ge_backend/dump/hook_dynamic_loader.h +5 -0
  151. mindspore/include/mindspore/ccsrc/backend/ge_backend/executor/ge_device_res_manager.h +1 -2
  152. mindspore/include/mindspore/ccsrc/backend/ge_backend/executor/ge_graph_executor.h +13 -14
  153. mindspore/include/mindspore/ccsrc/backend/ge_backend/executor/ge_utils.h +0 -2
  154. mindspore/include/mindspore/ccsrc/backend/ge_backend/ge_backend.h +10 -9
  155. mindspore/include/mindspore/ccsrc/backend/ge_backend/graph_ir/convert.h +2 -1
  156. mindspore/include/mindspore/ccsrc/backend/ge_backend/graph_ir/graph_runner.h +2 -1
  157. mindspore/include/mindspore/ccsrc/backend/ge_backend/graph_ir/utils.h +12 -14
  158. mindspore/include/mindspore/ccsrc/backend/ge_backend/pass/matmul_allreduce_fusion.h +51 -0
  159. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/abstract_actor.h +26 -19
  160. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/actor_common.h +14 -5
  161. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/actor_dump.h +2 -1
  162. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/actor_set.h +1 -1
  163. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/control_flow/control_actor.h +38 -38
  164. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/control_flow/entrance_actor.h +9 -9
  165. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/control_flow/exit_actor.h +8 -8
  166. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/control_flow/gather_actor.h +6 -6
  167. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/control_flow/stack_actor.h +11 -11
  168. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/control_flow/switch_actor.h +2 -2
  169. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/data_prepare_actor.h +16 -16
  170. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/data_source_actor.h +9 -9
  171. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/debug_actor.h +8 -8
  172. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/debug_aware_actor.h +2 -2
  173. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/loop_count_actor.h +6 -6
  174. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/memory_aware_actor.h +6 -6
  175. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/memory_manager_actor.h +8 -11
  176. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/output_actor.h +8 -5
  177. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/profiler_actor.h +2 -2
  178. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/recorder_actor.h +2 -2
  179. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/actor/super_kernel_actor.h +17 -17
  180. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/device_tensor_store.h +24 -24
  181. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/graph_compiler.h +8 -12
  182. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/graph_partition.h +49 -0
  183. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/scheduler_helper.h +1 -1
  184. mindspore/include/mindspore/ccsrc/backend/ge_backend/runtime/segment_runner.h +50 -0
  185. mindspore/include/mindspore/ccsrc/backend/ge_backend/utils/device_address_utils.h +4 -7
  186. mindspore/include/mindspore/ccsrc/backend/graph_compiler/op_backend.h +13 -24
  187. mindspore/include/mindspore/ccsrc/backend/graph_compiler/transform.h +2 -8
  188. mindspore/include/mindspore/ccsrc/backend/graph_compiler/vm.h +1 -5
  189. mindspore/include/mindspore/ccsrc/backend/ms_backend/ms_backend.h +0 -39
  190. mindspore/include/mindspore/ccsrc/backend/ms_backend/ms_backend_base.h +10 -5
  191. mindspore/include/mindspore/ccsrc/debug/checksum/checksum.h +35 -0
  192. mindspore/include/mindspore/ccsrc/debug/checksum/checksum_kernel.h +64 -0
  193. mindspore/include/mindspore/ccsrc/debug/checksum/checksum_mgr.h +50 -0
  194. mindspore/include/mindspore/ccsrc/debug/data_dump/device_statistic/check_overflow.h +1 -11
  195. mindspore/include/mindspore/ccsrc/debug/data_dump/device_statistic/common.h +0 -13
  196. mindspore/include/mindspore/ccsrc/debug/data_dump/device_statistic/kernel_launcher.h +3 -3
  197. mindspore/include/mindspore/ccsrc/debug/data_dump/device_statistic/mean.h +1 -1
  198. mindspore/include/mindspore/ccsrc/debug/data_dump/device_statistic/mem_manager.h +65 -0
  199. mindspore/include/mindspore/ccsrc/debug/data_dump/device_statistic/statistic_kernel.h +7 -8
  200. mindspore/include/mindspore/ccsrc/debug/data_dump/overflow_counter.h +6 -1
  201. mindspore/include/mindspore/ccsrc/debug/data_dump/tensor_info_collect.h +21 -6
  202. mindspore/include/mindspore/ccsrc/debug/data_dump/tensor_statistic.h +2 -2
  203. mindspore/include/mindspore/ccsrc/debug/debug_services.h +1 -4
  204. mindspore/include/mindspore/ccsrc/debug/debugger/debugger_utils.h +7 -8
  205. mindspore/include/mindspore/ccsrc/debug/debugger/tensor_summary.h +0 -53
  206. mindspore/include/mindspore/ccsrc/debug/dump/tensordump_control.h +6 -2
  207. mindspore/include/mindspore/ccsrc/debug/dump/utils.h +30 -0
  208. mindspore/include/mindspore/ccsrc/debug/profiler/mstx/mstx_impl.h +37 -24
  209. mindspore/include/mindspore/ccsrc/debug/profiler/mstx/mstx_symbol.h +63 -4
  210. mindspore/include/mindspore/ccsrc/debug/profiler/profiler.h +37 -15
  211. mindspore/include/mindspore/ccsrc/debug/profiler/profiling.h +9 -6
  212. mindspore/include/mindspore/ccsrc/debug/profiler/profiling_framework_data.h +2 -0
  213. mindspore/include/mindspore/ccsrc/debug/profiler/python_obj_pointer.h +7 -7
  214. mindspore/include/mindspore/ccsrc/debug/profiler/report_data.h +23 -0
  215. mindspore/include/mindspore/ccsrc/debug/profiler/thread.h +2 -2
  216. mindspore/include/mindspore/ccsrc/debug/summary/summary.h +1 -1
  217. mindspore/include/mindspore/ccsrc/debug/utils.h +0 -5
  218. mindspore/include/mindspore/ccsrc/distributed/cluster/actor_route_table_proxy.h +1 -1
  219. mindspore/include/mindspore/ccsrc/distributed/cluster/actor_route_table_service.h +0 -2
  220. mindspore/include/mindspore/ccsrc/distributed/cluster/topology/meta_server_node.h +5 -5
  221. mindspore/include/mindspore/ccsrc/distributed/persistent/storage/local_file.h +0 -1
  222. mindspore/include/mindspore/ccsrc/distributed/rpc/tcp/connection.h +0 -1
  223. mindspore/include/mindspore/ccsrc/distributed/rpc/tcp/socket_operation.h +0 -1
  224. mindspore/include/mindspore/ccsrc/distributed/rpc/tcp/tcp_comm.h +0 -1
  225. mindspore/include/mindspore/ccsrc/distributed/rpc/tcp/tcp_socket_operation.h +0 -1
  226. mindspore/include/mindspore/ccsrc/frontend/ir/primitive_py.h +1 -1
  227. mindspore/include/mindspore/ccsrc/frontend/ir/py_execute_py.h +11 -28
  228. mindspore/include/mindspore/ccsrc/frontend/ir/storage.h +44 -0
  229. mindspore/include/mindspore/ccsrc/frontend/ir/storage_base.h +45 -0
  230. mindspore/include/mindspore/ccsrc/frontend/ir/tensor_py.h +13 -22
  231. mindspore/include/mindspore/ccsrc/frontend/np_dtypes/np_dtypes.h +29 -0
  232. mindspore/include/mindspore/ccsrc/frontend/operator/composite/composite.h +76 -5
  233. mindspore/include/mindspore/ccsrc/frontend/operator/composite/do_signature.h +2 -1
  234. mindspore/include/mindspore/ccsrc/frontend/operator/composite/functional_overload.h +46 -0
  235. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/common/meta_impl.h +161 -22
  236. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/common/utils.h +38 -61
  237. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/any.h +27 -0
  238. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/any_ext.h +27 -0
  239. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/conv3d_padding.h +41 -0
  240. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/einsum_ext.h +47 -0
  241. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/func_dropout_ext.h +28 -0
  242. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/func_max_pool2d.h +28 -0
  243. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/gmm.h +28 -0
  244. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/gmm_backward.h +28 -0
  245. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/gmm_backward_fusion.h +28 -0
  246. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/gmm_common_utils.h +30 -0
  247. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/gmm_v2.h +28 -0
  248. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/gmm_v2_backward.h +28 -0
  249. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/gmm_v2_backward_fusion.h +28 -0
  250. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/inplace_exponential.h +31 -0
  251. mindspore/include/mindspore/ccsrc/frontend/operator/meta_dsl/func_op/moe_token_unpermute.h +28 -0
  252. mindspore/include/mindspore/ccsrc/frontend/optimizer/ad/adjoint.h +22 -3
  253. mindspore/include/mindspore/ccsrc/frontend/optimizer/ad/dfunctor.h +21 -10
  254. mindspore/include/mindspore/ccsrc/frontend/optimizer/ad/grad.h +5 -2
  255. mindspore/include/mindspore/ccsrc/frontend/optimizer/ad/pynative_jit_grad.h +11 -2
  256. mindspore/include/mindspore/ccsrc/frontend/optimizer/auto_monad_eliminate.h +3 -13
  257. mindspore/include/mindspore/ccsrc/frontend/optimizer/cse_pass.h +3 -7
  258. mindspore/include/mindspore/ccsrc/frontend/optimizer/graph_transform.h +3 -2
  259. mindspore/include/mindspore/ccsrc/frontend/optimizer/inplace_input_replace.h +30 -0
  260. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/add_forward_monad_depend.h +51 -37
  261. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/branch_culling.h +7 -104
  262. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/call_graph_tuple_transform.h +2 -1
  263. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/check_invalid_view_inplace_dout.h +46 -0
  264. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/const_output_eliminate.h +4 -0
  265. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/expand_dump_flag.h +1 -0
  266. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/get_grad_eliminate.h +5 -1
  267. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/incorporate_call.h +3 -3
  268. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/inline.h +35 -9
  269. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/item_dict_eliminate.h +3 -1
  270. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/item_tuple_or_list_eliminate.h +1 -17
  271. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/j_node_and_user_rematch.h +1 -1
  272. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/loop_unroll.h +1 -0
  273. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/parameter_eliminate.h +3 -3
  274. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/partial_eliminate.h +5 -3
  275. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/recompute_prepare.h +1 -0
  276. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/special_op_eliminate.h +9 -3
  277. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/stack_unstack_eliminate.h +13 -6
  278. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/stopgrad_eliminate.h +3 -1
  279. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass/switch_or_switch_layer_defer_inline.h +13 -5
  280. mindspore/include/mindspore/ccsrc/frontend/optimizer/irpass.h +7 -7
  281. mindspore/include/mindspore/ccsrc/frontend/optimizer/opt.h +10 -5
  282. mindspore/include/mindspore/ccsrc/frontend/optimizer/optimizer.h +55 -280
  283. mindspore/include/mindspore/ccsrc/frontend/optimizer/pattern_matcher.h +8 -2
  284. mindspore/include/mindspore/ccsrc/frontend/parallel/auto_parallel/operator_costmodel.h +5 -0
  285. mindspore/include/mindspore/ccsrc/frontend/parallel/auto_parallel/stage_compute.h +1 -1
  286. mindspore/include/mindspore/ccsrc/frontend/parallel/came_parallel_handler.h +1 -1
  287. mindspore/include/mindspore/ccsrc/frontend/parallel/costmodel_context.h +1 -1
  288. mindspore/include/mindspore/ccsrc/frontend/parallel/dynamic_creator.h +1 -1
  289. mindspore/include/mindspore/ccsrc/frontend/parallel/dynamic_shape/dynamic_shape.h +1 -1
  290. mindspore/include/mindspore/ccsrc/frontend/parallel/graph_util/flops_collection.h +1 -1
  291. mindspore/include/mindspore/ccsrc/frontend/parallel/graph_util/fold_pipeline_split_utils.h +1 -1
  292. mindspore/include/mindspore/ccsrc/frontend/parallel/graph_util/grad_accumulation_utils.h +2 -1
  293. mindspore/include/mindspore/ccsrc/frontend/parallel/graph_util/graph_splitter.h +2 -0
  294. mindspore/include/mindspore/ccsrc/frontend/parallel/graph_util/graph_utils.h +3 -2
  295. mindspore/include/mindspore/ccsrc/frontend/parallel/graph_util/node_info.h +2 -0
  296. mindspore/include/mindspore/ccsrc/frontend/parallel/graph_util/parallel_tensordump.h +50 -14
  297. mindspore/include/mindspore/ccsrc/frontend/parallel/interleaved_parallel/interleaved_parallel.h +1 -1
  298. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/activation_info.h +0 -11
  299. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/addn_info.h +1 -1
  300. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/apply_rotary_pos_emb_info.h +1 -1
  301. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/arithmetic_info.h +44 -0
  302. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/avgpool_info.h +1 -1
  303. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/cdist_info.h +1 -1
  304. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/conv3d_info.h +1 -1
  305. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/f_f_n_info.h +1 -1
  306. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/fft_info.h +1 -1
  307. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/fillv2_info.h +1 -1
  308. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/flash_attention_score_info.h +20 -20
  309. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/fused_infer_attention_score_info.h +15 -15
  310. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/gamma_info.h +1 -1
  311. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/gather_info.h +16 -0
  312. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/grid_sampler2d.h +1 -1
  313. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/group_norm_info.h +1 -1
  314. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/incre_flash_attention_info.h +1 -1
  315. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/index_add_info.h +55 -0
  316. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/inplace_op_info.h +1 -1
  317. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/iou_info.h +1 -1
  318. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/kldiv_loss_info.h +1 -1
  319. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/kv_cache_mgr_info.h +1 -1
  320. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/kv_cache_scatter_update_info.h +1 -1
  321. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/lin_space_info.h +1 -1
  322. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/loss_info.h +34 -0
  323. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/matmul_info.h +14 -1
  324. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/max_avg_pool_3d_info.h +1 -1
  325. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/moe_compute_expert_tokens_info.h +1 -1
  326. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/moe_finalize_routing_info.h +1 -1
  327. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/moe_gating_top_k_softmax_info.h +1 -1
  328. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/moe_init_routing_info.h +1 -1
  329. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/operator_info.h +7 -2
  330. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/ops_utils.h +18 -1
  331. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/pad_info.h +1 -1
  332. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/paged_attention_info.h +1 -1
  333. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/paged_attention_mask_info.h +1 -1
  334. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/prompt_flash_attention_info.h +1 -1
  335. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/quant_batch_matmul_info.h +1 -1
  336. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/quant_info.h +1 -1
  337. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/quant_linear_sparse_info.h +1 -1
  338. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/reduce_base_method_info.h +3 -1
  339. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/reshape_and_cache_info.h +1 -1
  340. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/reshape_info.h +9 -4
  341. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/scatter_math_ops_info.h +1 -1
  342. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/scatter_nd_ops_info.h +1 -1
  343. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/scatter_ops_info.h +1 -1
  344. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/self_define_shard_info.h +1 -1
  345. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/stand_alone_info.h +1 -1
  346. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/topkrouter_info.h +1 -1
  347. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/topprouter_info.h +55 -0
  348. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/tracev2_info.h +1 -1
  349. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/tril_info.h +1 -1
  350. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/weight_quant_batch_matmul_info.h +1 -1
  351. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/wkv_info.h +1 -1
  352. mindspore/include/mindspore/ccsrc/frontend/parallel/parallel_postprocessor.h +1 -1
  353. mindspore/include/mindspore/ccsrc/frontend/parallel/parallel_preprocessor.h +2 -2
  354. mindspore/include/mindspore/ccsrc/frontend/parallel/parallel_processor.h +5 -4
  355. mindspore/include/mindspore/ccsrc/frontend/parallel/parallel_processor_context.h +1 -1
  356. mindspore/include/mindspore/ccsrc/frontend/parallel/parallel_whole_graph_processor.h +1 -1
  357. mindspore/include/mindspore/ccsrc/frontend/parallel/parameter_manager.h +0 -1
  358. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/allreduce_slice_to_reducescatter.h +1 -1
  359. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/assign_add_opt.h +1 -1
  360. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/begin_end_overlap_inline.h +1 -1
  361. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/bias_add_comm_swap.h +1 -1
  362. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/dataset_reader_optimizer.h +1 -1
  363. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/fias_sp.h +1 -1
  364. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/flash_sp.h +1 -1
  365. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/float32_redistribution.h +1 -1
  366. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/full_micro_interleaved_order_control.h +1 -1
  367. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/handle_group_info.h +1 -1
  368. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/interleave_branches_utils.h +1 -1
  369. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/interleave_parallel_branches.h +1 -1
  370. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/interleave_split_concat_branches.h +1 -1
  371. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/label_fine_grained_interleaved_index.h +1 -1
  372. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/label_micro_interleaved_index.h +1 -1
  373. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/matmul_add_comm_reduction.h +1 -1
  374. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/merge_cast_opt.h +1 -1
  375. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/merge_comm.h +1 -1
  376. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/merge_recompute_call_nodes.h +28 -0
  377. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/micro_interleaved_order_control.h +1 -1
  378. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/offloading_packed_expert.h +1 -1
  379. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/optimize_parallel_allgather_comm.h +1 -1
  380. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_grad_comm.h +1 -1
  381. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_grad_flash_sp.h +1 -1
  382. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_grad_ring_attention.h +1 -1
  383. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_gradmatmul_and_gradallreduce.h +1 -1
  384. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_opt_shard_in_pipeline.h +1 -1
  385. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_param_gather.h +1 -1
  386. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_recompute_allgather_and_flashattention_grad.h +1 -1
  387. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_recompute_and_grad_model_parallel.h +1 -1
  388. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/overlap_recompute_comm.h +28 -0
  389. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/pass_utils.h +1 -1
  390. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/remove_cast_before_assign_add.h +1 -1
  391. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/reorder_send_recv_between_fp_bp.h +1 -1
  392. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/slice_activation_in_cell_share_recompute.h +1 -1
  393. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/split_layernorm_comm_fp.h +1 -1
  394. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/split_matmul_comm_elementwise_fp.h +1 -1
  395. mindspore/include/mindspore/ccsrc/frontend/parallel/pass/swap_dp_allreduce_reducescatter.h +1 -1
  396. mindspore/include/mindspore/ccsrc/frontend/parallel/pipeline_transformer/detach_backward.h +70 -0
  397. mindspore/include/mindspore/ccsrc/frontend/parallel/pipeline_transformer/fold_pipeline_transformer.h +1 -1
  398. mindspore/include/mindspore/ccsrc/frontend/parallel/pipeline_transformer/gpipe_interleave_scheduler.h +1 -1
  399. mindspore/include/mindspore/ccsrc/frontend/parallel/pipeline_transformer/pipeline_interleave.h +14 -3
  400. mindspore/include/mindspore/ccsrc/frontend/parallel/pipeline_transformer/pipeline_scheduler.h +1 -1
  401. mindspore/include/mindspore/ccsrc/frontend/parallel/pipeline_transformer/seqpipe_scheduler.h +1 -1
  402. mindspore/include/mindspore/ccsrc/frontend/parallel/pipeline_transformer/zero_bubble_v.h +124 -0
  403. mindspore/include/mindspore/ccsrc/frontend/parallel/shard/shard.h +1 -1
  404. mindspore/include/mindspore/ccsrc/frontend/parallel/step_assigned_parallel.h +1 -1
  405. mindspore/include/mindspore/ccsrc/frontend/parallel/step_parallel_utils.h +10 -3
  406. mindspore/include/mindspore/ccsrc/frontend/parallel/strategy_checkpoint/strategy_checkpoint_info.h +1 -1
  407. mindspore/include/mindspore/ccsrc/frontend/parallel/strategy_loader.h +1 -1
  408. mindspore/include/mindspore/ccsrc/frontend/parallel/tensor_layout/layout_utils.h +1 -1
  409. mindspore/include/mindspore/ccsrc/frontend/parallel/tensor_layout/shared_parameter.h +1 -1
  410. mindspore/include/mindspore/ccsrc/frontend/parallel/tensor_layout/tensor_layout.h +3 -0
  411. mindspore/include/mindspore/ccsrc/frontend/parallel/tensor_layout/tensor_transform.h +2 -2
  412. mindspore/include/mindspore/ccsrc/include/backend/anf_runtime_algorithm.h +29 -13
  413. mindspore/include/mindspore/ccsrc/include/backend/data_queue/data_queue_mgr.h +1 -5
  414. mindspore/include/mindspore/ccsrc/include/backend/debug/data_dump/dump_control.h +1 -0
  415. mindspore/include/mindspore/ccsrc/include/backend/debug/data_dump/dump_json_parser.h +4 -5
  416. mindspore/include/mindspore/ccsrc/include/backend/debug/data_dump/dump_utils.h +1 -0
  417. mindspore/include/mindspore/ccsrc/include/backend/debug/data_dump/tensor_stat_dump.h +0 -3
  418. mindspore/include/mindspore/ccsrc/include/backend/debug/debugger/debugger.h +0 -2
  419. mindspore/include/mindspore/ccsrc/include/backend/debug/execute_order_tracker/execute_order_tracker.h +14 -4
  420. mindspore/include/mindspore/ccsrc/include/backend/debug/tensor_data.h +0 -19
  421. mindspore/include/mindspore/ccsrc/include/backend/distributed/cluster/tcp_store.h +53 -0
  422. mindspore/include/mindspore/ccsrc/include/backend/distributed/collective/collective_manager.h +17 -10
  423. mindspore/include/mindspore/ccsrc/include/backend/distributed/constants.h +1 -10
  424. mindspore/include/mindspore/ccsrc/include/backend/distributed/embedding_cache/embedding_hash_map.h +0 -2
  425. mindspore/include/mindspore/ccsrc/include/backend/distributed/ps/ps_context.h +0 -6
  426. mindspore/include/mindspore/ccsrc/include/backend/distributed/rpc/tcp/constants.h +2 -1
  427. mindspore/include/mindspore/ccsrc/include/backend/kernel_graph.h +0 -1
  428. mindspore/include/mindspore/ccsrc/include/backend/kernel_info.h +8 -10
  429. mindspore/include/mindspore/ccsrc/include/backend/mbuf_device_address.h +5 -5
  430. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/abstract_dynamic_mem_pool.h +10 -5
  431. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/address_discretizer.h +63 -0
  432. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/dynamic_mem_pool.h +12 -0
  433. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/max_segment_tree.h +181 -0
  434. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/mem_dynamic_allocator.h +0 -1
  435. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/mem_pool_util.h +98 -0
  436. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/mem_tracker.h +11 -107
  437. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/race_checker.h +64 -0
  438. mindspore/include/mindspore/ccsrc/include/backend/mem_reuse/tracker_graph.h +91 -0
  439. mindspore/include/mindspore/ccsrc/include/backend/optimizer/helper.h +0 -2
  440. mindspore/include/mindspore/ccsrc/include/backend/optimizer/inplace_node_pass.h +1 -9
  441. mindspore/include/mindspore/ccsrc/include/backend/optimizer/optimizer.h +3 -6
  442. mindspore/include/mindspore/ccsrc/include/backend/optimizer/pattern_engine.h +0 -2
  443. mindspore/include/mindspore/ccsrc/include/backend/optimizer/visitor.h +2 -0
  444. mindspore/include/mindspore/ccsrc/include/backend/py_execute_utils.h +2 -1
  445. mindspore/include/mindspore/ccsrc/include/common/debug/common.h +2 -1
  446. mindspore/include/mindspore/ccsrc/include/common/debug/draw.h +3 -1
  447. mindspore/include/mindspore/ccsrc/include/common/debug/dump_proto.h +2 -10
  448. mindspore/include/mindspore/ccsrc/include/common/expander/core/emitter.h +3 -2
  449. mindspore/include/mindspore/ccsrc/include/common/expander/core/node.h +1 -1
  450. mindspore/include/mindspore/ccsrc/include/common/fallback.h +9 -0
  451. mindspore/include/mindspore/ccsrc/include/common/pybind_api/api_register.h +7 -1
  452. mindspore/include/mindspore/ccsrc/include/common/pynative/abstract_converter.h +0 -4
  453. mindspore/include/mindspore/ccsrc/include/common/pynative/adapter.h +2 -5
  454. mindspore/include/mindspore/ccsrc/include/common/pynative/common_utils.h +5 -1
  455. mindspore/include/mindspore/ccsrc/include/common/pynative/grad_state.h +12 -0
  456. mindspore/include/mindspore/ccsrc/include/common/pynative/variable.h +326 -0
  457. mindspore/include/mindspore/ccsrc/include/common/random.h +1 -2
  458. mindspore/include/mindspore/ccsrc/include/common/runtime_conf/runtime_conf.h +11 -7
  459. mindspore/include/mindspore/ccsrc/include/common/runtime_conf/thread_bind_core.h +12 -10
  460. mindspore/include/mindspore/ccsrc/include/common/symbol_engine/symbol_engine_impl.h +16 -1
  461. mindspore/include/mindspore/ccsrc/include/common/utils/anfalgo.h +13 -2
  462. mindspore/include/mindspore/ccsrc/include/common/utils/comm_manager.h +0 -1
  463. mindspore/include/mindspore/ccsrc/include/common/utils/compile_cache_context.h +4 -2
  464. mindspore/include/mindspore/ccsrc/include/common/utils/convert_utils.h +18 -4
  465. mindspore/include/mindspore/ccsrc/include/common/utils/convert_utils_py.h +2 -10
  466. mindspore/include/mindspore/ccsrc/include/common/utils/cse.h +0 -1
  467. mindspore/include/mindspore/ccsrc/include/common/utils/json_operation_utils.h +1 -1
  468. mindspore/include/mindspore/ccsrc/include/common/utils/ms_device_shape_transfer.h +0 -1
  469. mindspore/include/mindspore/ccsrc/include/common/utils/parallel_context.h +10 -2
  470. mindspore/include/mindspore/ccsrc/include/common/utils/python_adapter.h +3 -3
  471. mindspore/include/mindspore/ccsrc/include/common/utils/stub_tensor.h +1 -3
  472. mindspore/include/mindspore/ccsrc/include/common/utils/summary/event_writer.h +1 -1
  473. mindspore/include/mindspore/ccsrc/include/common/utils/tensor_py.h +24 -117
  474. mindspore/include/mindspore/ccsrc/include/common/utils/tensor_py_wrapper.h +1 -7
  475. mindspore/include/mindspore/ccsrc/include/common/utils/tensor_utils.h +3 -3
  476. mindspore/include/mindspore/ccsrc/include/common/utils/utils.h +8 -8
  477. mindspore/include/mindspore/ccsrc/include/common/visible.h +0 -10
  478. mindspore/include/mindspore/ccsrc/kernel/environ_manager.h +2 -0
  479. mindspore/include/mindspore/ccsrc/kernel/framework_utils.h +3 -0
  480. mindspore/include/mindspore/ccsrc/kernel/graph_kernel_info.h +1 -1
  481. mindspore/include/mindspore/ccsrc/kernel/philox_random.h +47 -87
  482. mindspore/include/mindspore/ccsrc/minddata/dataset/api/python/python_mp.h +26 -6
  483. mindspore/include/mindspore/ccsrc/minddata/dataset/core/config_manager.h +9 -0
  484. mindspore/include/mindspore/ccsrc/minddata/dataset/core/cv_tensor.h +1 -1
  485. mindspore/include/mindspore/ccsrc/minddata/dataset/core/data_type.h +1 -56
  486. mindspore/include/mindspore/ccsrc/minddata/dataset/core/device_buffer.h +74 -0
  487. mindspore/include/mindspore/ccsrc/minddata/dataset/core/message_queue.h +29 -20
  488. mindspore/include/mindspore/ccsrc/minddata/dataset/core/shared_memory_queue.h +47 -2
  489. mindspore/include/mindspore/ccsrc/minddata/dataset/core/tensor.h +26 -2
  490. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/connector.h +7 -0
  491. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/batch_info.h +61 -0
  492. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/batch_op.h +28 -39
  493. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/map_op/cpu_map_job.h +3 -3
  494. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/map_op/gpu_map_job.h +3 -3
  495. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/map_op/map_job.h +2 -2
  496. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/map_op/map_op.h +12 -2
  497. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/map_op/npu_map_job.h +3 -3
  498. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/receive_bridge_op.h +4 -0
  499. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/send_bridge_op.h +1 -1
  500. mindspore/include/mindspore/ccsrc/minddata/dataset/engine/datasetops/source/mindrecord_op.h +0 -1
  501. mindspore/include/mindspore/ccsrc/minddata/dataset/include/dataset/constants.h +9 -0
  502. mindspore/include/mindspore/ccsrc/minddata/dataset/include/dataset/vision_ascend.h +1 -1
  503. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/data/parse_example_op.h +19 -15
  504. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/acl_adapter.h +28 -1
  505. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/AclLiteType.h +6 -1
  506. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/AclLiteUtils.h +6 -1
  507. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/DvppCommon.h +1 -1
  508. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/ErrorCode.h +2 -2
  509. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/ThreadSafeQueue.h +3 -1
  510. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/VdecHelper.h +9 -12
  511. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/acl_plugin.h +19 -0
  512. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/dvpp_video.h +29 -10
  513. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/dvpp_video_utils.h +80 -0
  514. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/lite_cv/image_process.h +1 -1
  515. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/pyav/container.h +100 -0
  516. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/pyav/context.h +102 -0
  517. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/pyav/format.h +45 -0
  518. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/pyav/frame.h +74 -0
  519. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/pyav/packet.h +59 -0
  520. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/pyav/stream.h +93 -0
  521. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/py_func_op.h +37 -0
  522. mindspore/include/mindspore/ccsrc/minddata/dataset/util/btree.h +1 -1
  523. mindspore/include/mindspore/ccsrc/minddata/dataset/util/command.h +29 -0
  524. mindspore/include/mindspore/ccsrc/minddata/dataset/util/cond_var.h +0 -1
  525. mindspore/include/mindspore/ccsrc/minddata/dataset/util/ftok_key.h +2 -2
  526. mindspore/include/mindspore/ccsrc/minddata/dataset/util/json_helper.h +1 -1
  527. mindspore/include/mindspore/ccsrc/minddata/dataset/util/log_adapter.h +0 -5
  528. mindspore/include/mindspore/ccsrc/minddata/dataset/util/queue.h +1 -1
  529. mindspore/include/mindspore/ccsrc/minddata/dataset/util/sig_handler.h +11 -3
  530. mindspore/include/mindspore/ccsrc/minddata/dataset/util/system_pool.h +1 -1
  531. mindspore/include/mindspore/ccsrc/minddata/dataset/util/task_manager.h +0 -1
  532. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/common/log_adapter.h +0 -5
  533. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_distributed_sample.h +0 -1
  534. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_header.h +0 -1
  535. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_index.h +0 -1
  536. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_pk_sample.h +0 -1
  537. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_reader.h +0 -1
  538. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_schema.h +0 -1
  539. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_statistics.h +0 -1
  540. mindspore/include/mindspore/ccsrc/minddata/mindrecord/include/shard_writer.h +0 -1
  541. mindspore/include/mindspore/ccsrc/minddata/utils.h +30 -2
  542. mindspore/include/mindspore/ccsrc/ms_extension/all.h +46 -0
  543. mindspore/include/mindspore/ccsrc/ms_extension/api.h +33 -0
  544. mindspore/include/mindspore/ccsrc/ms_extension/ascend/atb/atb_common.h +98 -0
  545. mindspore/include/mindspore/ccsrc/ms_extension/ascend/atb/operation_cache.h +229 -0
  546. mindspore/include/mindspore/ccsrc/ms_extension/common/tensor.h +319 -0
  547. mindspore/include/mindspore/ccsrc/ms_extension/common/tensor_utils.h +83 -0
  548. mindspore/include/mindspore/ccsrc/ms_extension/common/visible.h +28 -0
  549. mindspore/include/mindspore/ccsrc/ms_extension/pynative/pyboost_extension.h +312 -0
  550. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/capture_context.h +1 -1
  551. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/eval_frame_hook.h +2 -2
  552. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_build/build_graph_utils.h +1 -7
  553. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_build/func_graph_builder.h +25 -6
  554. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/abstract_object.h +92 -19
  555. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/cfg.h +19 -5
  556. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/code_generator.h +53 -49
  557. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/graph.h +40 -10
  558. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/graph_analyzer.h +3 -19
  559. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/graph_arguments_optimizer.h +145 -0
  560. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/graph_build.h +13 -26
  561. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/node.h +33 -3
  562. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_capture/side_effect.h +116 -27
  563. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_compiler/abstract_type.h +2 -2
  564. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_compiler/compiler.h +4 -0
  565. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_compiler/utils.h +2 -0
  566. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_guard/cache.h +32 -8
  567. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_guard/guard.h +11 -15
  568. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_guard/guard_utils.h +17 -8
  569. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_guard/infer.h +0 -2
  570. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_guard/shape_ctx.h +3 -3
  571. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/graph_guard/trace.h +50 -93
  572. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/jit_compile_results.h +1 -16
  573. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/pi_jit_config.h +11 -22
  574. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/python_adapter/py_code.h +56 -5
  575. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/python_adapter/py_frame.h +6 -7
  576. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/python_adapter/pydef.h +0 -6
  577. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/runtime.h +1 -1
  578. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/utils/opcode_util.h +5 -0
  579. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/utils/stop_trace_reason.h +26 -17
  580. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/utils/utils.h +15 -11
  581. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/action.h +3 -4
  582. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/executor/executor_py.h +116 -0
  583. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/executor/graph_executor_py.h +118 -0
  584. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/executor/jit_executor_py.h +68 -0
  585. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/graph_circle_handler.h +35 -0
  586. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/parse/data_converter.h +6 -0
  587. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/parse/function_block.h +1 -0
  588. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/parse/parse.h +10 -0
  589. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/parse/parse_base.h +17 -3
  590. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/parse/resolve.h +15 -1
  591. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/pass.h +4 -1
  592. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/pass_config.h +4 -0
  593. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/pipeline.h +17 -171
  594. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/resource.h +8 -16
  595. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/async_eval_result.h +2 -2
  596. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/auto_monad.h +1 -1
  597. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/builtin_prim.h +3 -3
  598. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/evaluator.h +14 -12
  599. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/order_enforce.h +1 -1
  600. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/prim.h +13 -76
  601. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/prim_utils.h +78 -0
  602. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/program_specialize.h +1 -1
  603. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/static_analysis.h +4 -5
  604. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/validator.h +3 -0
  605. mindspore/include/mindspore/ccsrc/pipeline/jit/trace/trace_recorder.h +19 -4
  606. mindspore/include/mindspore/ccsrc/pipeline/llm_boost/llm_boost_binder.h +1 -1
  607. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/device/ascend_dma_handle.h +0 -2
  608. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/device/kernel_select_ascend.h +4 -5
  609. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/acl_stream_assign.h +2 -2
  610. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/ascend_device_context.h +69 -0
  611. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/ascend_device_res_manager.h +16 -13
  612. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/ge_graph_optimization.h +0 -1
  613. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/ge_kernel_executor.h +12 -8
  614. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/stress_detect.h +40 -0
  615. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/profiler/ascend_profiling.h +32 -7
  616. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/profiler/feature_mgr.h +1 -1
  617. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/profiler/mstx/mstx_dispatcher.h +10 -8
  618. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/atb/add_atb_kernel.h +2 -1
  619. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/atb/atb_adapter.h +24 -0
  620. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/atb/atb_kernel_mod.h +3 -1
  621. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/atb/inplace_grouped_matmul_add_atb_kernel.h +2 -1
  622. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/atb/inplace_matmul_add_atb_kernel.h +39 -0
  623. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/dvm/dvm_comm_info.h +1 -0
  624. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/dvm/dvm_kernel_mod.h +1 -1
  625. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/dvm/lazy_fusion_kernel.h +15 -16
  626. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/dvm/lazy_fusion_op.h +119 -93
  627. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hccl_kernel.h +1 -1
  628. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_all_gather_matmul.h +63 -0
  629. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_all_gather_v.h +51 -0
  630. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_matmul_all_reduce.h +2 -1
  631. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_matmul_reduce_scatter.h +61 -0
  632. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_receive.h +3 -1
  633. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_reduce_scatter_v.h +51 -0
  634. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_send.h +1 -0
  635. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/hcom_util.h +26 -11
  636. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_all_gather.h +1 -1
  637. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_all_gather_into_tensor.h +1 -1
  638. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_all_gather_into_tensor_uneven.h +40 -0
  639. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_all_reduce.h +1 -1
  640. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_all_to_all_v.h +1 -1
  641. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_all_to_all_v_single.h +1 -1
  642. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_barrier.h +1 -1
  643. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_batch_isend_irecv.h +1 -1
  644. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_broadcast.h +1 -1
  645. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_gather.h +1 -1
  646. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_gather_into_tensor.h +1 -1
  647. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_irecv.h +1 -1
  648. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_isend.h +1 -1
  649. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_reduce.h +1 -1
  650. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_reduce_scatter.h +1 -1
  651. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_reduce_scatter_tensor.h +1 -1
  652. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_reduce_scatter_tensor_uneven.h +40 -0
  653. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_scatter.h +1 -1
  654. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/dist_comm_scatter_tensor.h +1 -1
  655. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/inner_comm_all_gather.h +1 -1
  656. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/inner_comm_all_reduce.h +1 -1
  657. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/inner_comm_all_to_all_v.h +1 -1
  658. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/inner_comm_irecv.h +1 -1
  659. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/inner_comm_isend.h +1 -1
  660. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/auto_generate/inner_comm_reduce_scatter.h +1 -1
  661. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/comm_common.h +4 -4
  662. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_all_gather.h +1 -1
  663. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_all_gather_into_tensor.h +2 -2
  664. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_all_gather_into_tensor_uneven.h +38 -0
  665. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_all_reduce.h +1 -1
  666. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_all_to_all_v.h +1 -1
  667. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_all_to_all_v_single.h +2 -2
  668. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_broadcast.h +1 -1
  669. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_gather.h +1 -1
  670. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_gather_into_tensor.h +2 -2
  671. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_irecv.h +1 -1
  672. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_isend.h +1 -1
  673. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_reduce.h +1 -1
  674. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_reduce_scatter.h +1 -1
  675. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_reduce_scatter_tensor.h +2 -2
  676. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_reduce_scatter_tensor_uneven.h +39 -0
  677. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_scatter.h +1 -1
  678. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/dist_comm_scatter_tensor.h +2 -2
  679. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/inner_comm_all_gather.h +1 -1
  680. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/inner_comm_all_reduce.h +1 -1
  681. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/inner_comm_all_to_all_v.h +1 -1
  682. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/inner_comm_isend.h +1 -1
  683. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/hccl/pyboost/inner_comm_reduce_scatter.h +1 -1
  684. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/add_rms_norm_quant.h +15 -1
  685. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/dynamic_ntk.h +31 -0
  686. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/fused_add_topk_div.h +31 -0
  687. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/internal_kernel_in_out_map.h +16 -0
  688. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/internal_tiling_cache.h +3 -3
  689. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/kv_scale_cache.h +30 -0
  690. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/mla.h +48 -0
  691. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/mla_preprocess.h +32 -0
  692. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/multi_weight_matmul.h +2 -0
  693. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/apply_rotary_pos_emb.h +46 -0
  694. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/auto_gen/internal_kernel_info_adapter.h +95 -0
  695. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/auto_gen/kernel_info_adapter.h +78 -0
  696. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/flash_attention_score.h +54 -0
  697. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/internal_kernel_info.h +162 -0
  698. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/internal_pyboost_utils.h +121 -0
  699. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/mla.h +53 -0
  700. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/paged_attention.h +91 -0
  701. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/pyboost/reshape_and_cache.h +43 -0
  702. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/internal/swiglu_dynamic_quant.h +32 -0
  703. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/rts/reshape_ext.h +5 -0
  704. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/boost_model_atb.h +1 -1
  705. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/atb_infer.h +7 -9
  706. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/comm.h +82 -0
  707. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/common_op_params.h +77 -0
  708. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/context.h +50 -10
  709. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/graph_op_builder.h +24 -18
  710. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/infer_op_params.h +2331 -671
  711. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/operation.h +29 -11
  712. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/operation_infra.h +78 -0
  713. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/svector.h +19 -22
  714. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/train_op_params.h +215 -24
  715. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/types.h +39 -24
  716. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb/utils.h +7 -9
  717. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/base/context_factory.h +1 -0
  718. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/base/event_manager.h +156 -0
  719. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/base/external_comm_manager.h +68 -0
  720. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/base/hosttensor_binder.h +0 -1
  721. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/base/model.h +33 -29
  722. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/error.h +49 -0
  723. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/file_utils.h +86 -0
  724. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_config.h +84 -0
  725. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_error.h +20 -0
  726. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_utils.h +86 -0
  727. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log.h +128 -52
  728. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/ModelTaskExecutor.h +64 -0
  729. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/TaskQueue.h +40 -0
  730. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/check_util.h +80 -0
  731. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/config.h +2 -12
  732. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/file_system.h +35 -0
  733. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/hccl_runner.h +48 -0
  734. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/model_factory.h +1 -3
  735. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/operation_factory.h +3 -3
  736. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/operation_util.h +6 -5
  737. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/share_memory.h +46 -0
  738. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/singleton.h +7 -0
  739. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/statistic.h +1 -0
  740. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/str_split.h +0 -2
  741. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/expander_fallback.h +33 -0
  742. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ge_backend_optimization.h +1 -0
  743. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion/matmul_assignadd_fusion.h +61 -0
  744. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/inference_matmul_split_fusion.h +31 -8
  745. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/inference_qbmm_elemwise_fusion.h +46 -0
  746. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/inference_swiglu_fusion_v2.h +52 -0
  747. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/inference_weight_preprocess_utils.h +1 -1
  748. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/moe_init_routing_dyn_quantv2_fusion.h +66 -0
  749. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/rms_norm_quant_fusion.h +24 -1
  750. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/swiglu_dynamic_quant_fusion.h +47 -0
  751. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion_infer/swiglu_reshape_dynamic_quant_fusion.h +47 -0
  752. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/device/cpu_common.h +1 -1
  753. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/hardware/cpu_device_context.h +20 -11
  754. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/hardware/cpu_somas.h +1 -1
  755. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/hardware/mpi_collective_comm_lib.h +3 -1
  756. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/hardware/ms_collective_comm_lib.h +9 -2
  757. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/contiguous_cpu_kernel.h +8 -6
  758. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/cpu_kernel.h +2 -2
  759. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/custom/custom_kernel_input_info.h +99 -0
  760. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/custom/custom_op_plugin_kernel.h +62 -0
  761. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/pyexecute/joinedstr_cpu_kernel.h +46 -0
  762. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/pyexecute/py_execute_cpu_kernel.h +1 -6
  763. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/device/gpu_kernel_task.h +1 -0
  764. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/hardware/gpu_device_context.h +18 -18
  765. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/hardware/gpu_somas.h +1 -1
  766. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/hardware/nvidia_collective_comm_lib.h +3 -1
  767. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/ascend_device_address/ascend_device_address.h +27 -16
  768. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/ascend_res_manager.h +27 -11
  769. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/capture_graph/ascend_capture_graph.h +45 -0
  770. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/ascend_collective_comm_lib.h +6 -5
  771. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/ascend_communication_group.h +27 -12
  772. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/ccool_collective_comm_lib.h +4 -5
  773. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/ccool_communication_group.h +4 -4
  774. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/dummy_ascend_collective_comm_lib.h +3 -5
  775. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/dvm_collective_comm_lib.h +5 -5
  776. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/dvm_communication_group.h +1 -1
  777. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/hccl_watch_dog_thread.h +5 -3
  778. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/leaper_trans.h +2 -5
  779. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/lowlatency_collective_comm_lib.h +20 -5
  780. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/multi_ascend_collective_comm_lib.h +6 -6
  781. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/multi_ascend_communication_group.h +4 -2
  782. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/collective/utils.h +83 -0
  783. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/device_context_conf/op_tuning_conf.h +14 -0
  784. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/dvm/dvm.h +246 -0
  785. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/hal_manager/ascend_hal_manager.h +1 -0
  786. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/hccl_adapter/hccl_adapter.h +31 -3
  787. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/hccl_adapter/plugin/hccl_plugin.h +8 -0
  788. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mbuf_manager/mbuf_receive_manager.h +6 -1
  789. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mbuf_manager/tdt_manager.h +44 -0
  790. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mem_manager/abstract_ascend_memory_pool_support.h +2 -0
  791. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mem_manager/ascend_dynamic_mem_adapter.h +3 -2
  792. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mem_manager/ascend_memory_adapter.h +1 -0
  793. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mem_manager/ascend_memory_manager.h +1 -0
  794. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mem_manager/ascend_memory_pool.h +14 -0
  795. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mem_manager/ascend_two_pointer_mem_adapter.h +1 -0
  796. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/mem_manager/ascend_vmm_adapter.h +11 -9
  797. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/custom_op_proto/cust_array_ops.h +11 -0
  798. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/custom_op_proto/cust_other_ops.h +0 -22
  799. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/op_adapter_base.h +38 -33
  800. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/op_adapter_map.h +5 -2
  801. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/op_adapter_util.h +3 -0
  802. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/op_declare/array_ops_declare.h +3 -0
  803. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/op_declare/hcom_ops_declare.h +3 -0
  804. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/op_declare/transform_fusion_ops_declare.h +0 -6
  805. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/op_adapter/transform_util.h +1 -1
  806. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/stream_manager/ascend_stream_manager.h +6 -4
  807. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/symbol_interface/acl_mdl_symbol.h +14 -0
  808. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/symbol_interface/acl_rt_symbol.h +6 -0
  809. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/symbol_interface/symbol_utils.h +11 -8
  810. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/cpu_device_address/cpu_device_address.h +17 -12
  811. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/cpu_mem_manager/cpu_hash_table.h +128 -0
  812. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/cpu_mem_manager/cpu_hash_table_util.h +114 -0
  813. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/cpu_mem_manager/cpu_memory_manager.h +4 -10
  814. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/cpu_mem_manager/cpu_memory_pool.h +3 -1
  815. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/cpu_res_manager.h +8 -15
  816. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/visible.h +32 -0
  817. mindspore/include/mindspore/ccsrc/plugin/res_manager/gpu/device/gpu_device_address.h +19 -11
  818. mindspore/include/mindspore/ccsrc/plugin/res_manager/gpu/gpu_res_manager.h +9 -9
  819. mindspore/include/mindspore/ccsrc/ps/core/collective_ops_impl.h +31 -6
  820. mindspore/include/mindspore/ccsrc/ps/core/communicator/http_request_handler.h +0 -1
  821. mindspore/include/mindspore/ccsrc/ps/core/file_configuration.h +2 -2
  822. mindspore/include/mindspore/ccsrc/ps/core/node.h +1 -1
  823. mindspore/include/mindspore/ccsrc/pybind_api/hal/event_py.h +2 -2
  824. mindspore/include/mindspore/ccsrc/pybind_api/hal/memory_py.h +2 -0
  825. mindspore/include/mindspore/ccsrc/pybind_api/hal/stream_py.h +3 -4
  826. mindspore/include/mindspore/ccsrc/pybind_api/ir/tensor_api/auto_generate/tensor_api.h +138 -133
  827. mindspore/include/mindspore/ccsrc/pybind_api/ir/tensor_index_py.h +10 -107
  828. mindspore/include/mindspore/ccsrc/pybind_api/ir/tensor_register/auto_generate/tensor_py_gen.h +138 -134
  829. mindspore/include/mindspore/ccsrc/pybind_api/ir/tensor_register/tensor_func_reg.h +0 -1
  830. mindspore/include/mindspore/ccsrc/pybind_api/resource/manager.h +2 -2
  831. mindspore/include/mindspore/ccsrc/pybind_api/storage_py.h +36 -0
  832. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/abs.h +1 -1
  833. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/acos_ext.h +1 -1
  834. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/acosh_ext.h +1 -1
  835. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adamw.h +1 -1
  836. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adaptive_avg_pool1d.h +1 -1
  837. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adaptive_avg_pool2d_ext.h +1 -1
  838. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adaptive_avg_pool2d_grad_ext.h +1 -1
  839. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adaptive_avg_pool3d_ext.h +1 -1
  840. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adaptive_avg_pool3d_grad_ext.h +1 -1
  841. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adaptive_max_pool1d.h +1 -1
  842. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/adaptive_max_pool2d.h +1 -1
  843. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/add.h +1 -1
  844. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/add_ext.h +1 -1
  845. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/add_layer_norm_grad.h +1 -1
  846. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/add_layernorm_v2.h +1 -1
  847. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/add_rms_norm.h +1 -1
  848. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/add_rmsnorm_quant_v2.h +1 -1
  849. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/add_scalar.h +1 -1
  850. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/addbmm.h +1 -1
  851. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/addcdiv_ext.h +1 -1
  852. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/addcmul_ext.h +1 -1
  853. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/addmm.h +1 -1
  854. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/addmv.h +1 -1
  855. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/all_finite.h +1 -1
  856. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/all_gather_matmul.h +1 -1
  857. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/any.h +44 -0
  858. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/any_ext.h +44 -0
  859. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/apply_rotary_pos_emb.h +44 -0
  860. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/arange.h +1 -1
  861. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/argmax_ext.h +1 -1
  862. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/argmax_with_value.h +1 -1
  863. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/argmin_ext.h +1 -1
  864. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/argmin_with_value.h +1 -1
  865. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/argsort.h +1 -1
  866. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/as_strided.h +1 -1
  867. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/asin_ext.h +1 -1
  868. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/asinh_ext.h +1 -1
  869. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/atan2_ext.h +1 -1
  870. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/atan_ext.h +1 -1
  871. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/atanh.h +1 -1
  872. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/avg_pool1d.h +1 -1
  873. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/avg_pool2d.h +1 -1
  874. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/avg_pool2d_grad.h +1 -1
  875. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/avg_pool3d_ext.h +1 -1
  876. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/avg_pool3d_grad_ext.h +1 -1
  877. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/baddbmm.h +1 -1
  878. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_mat_mul.h +1 -1
  879. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_norm_elemt.h +1 -1
  880. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_norm_elemt_grad.h +1 -1
  881. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_norm_ext.h +1 -1
  882. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_norm_gather_stats_with_counts.h +1 -1
  883. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_norm_grad_ext.h +1 -1
  884. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_norm_reduce_grad.h +1 -1
  885. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/batch_norm_stats.h +1 -1
  886. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bernoulli_ext.h +1 -1
  887. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/binary_cross_entropy.h +1 -1
  888. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/binary_cross_entropy_grad.h +1 -1
  889. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/binary_cross_entropy_with_logits.h +1 -1
  890. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/binary_cross_entropy_with_logits_backward.h +1 -1
  891. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bincount_ext.h +1 -1
  892. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bitwise_and_scalar.h +1 -1
  893. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bitwise_and_tensor.h +1 -1
  894. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bitwise_not.h +1 -1
  895. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bitwise_or_scalar.h +1 -1
  896. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bitwise_or_tensor.h +1 -1
  897. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bitwise_xor_scalar.h +1 -1
  898. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bitwise_xor_tensor.h +1 -1
  899. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/bmm_ext.h +1 -1
  900. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/broadcast_to.h +1 -1
  901. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/broadcast_to_view.h +44 -0
  902. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cast.h +1 -1
  903. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/ceil.h +1 -1
  904. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cell_backward_hook.h +44 -0
  905. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/chunk.h +1 -1
  906. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/chunk_view.h +44 -0
  907. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/clamp_scalar.h +1 -1
  908. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/clamp_tensor.h +1 -1
  909. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/clone.h +1 -1
  910. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/col2im_ext.h +1 -1
  911. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/col2im_grad.h +1 -1
  912. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/concat.h +1 -1
  913. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/constant_pad_nd.h +1 -1
  914. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/contiguous.h +1 -1
  915. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/conv1d_ext.h +1 -1
  916. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/conv1d_padding.h +1 -1
  917. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/conv2d_ext.h +1 -1
  918. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/conv2d_padding.h +1 -1
  919. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/conv3d_ext.h +1 -1
  920. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/conv3d_padding.h +1 -1
  921. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/conv_transpose2d.h +1 -1
  922. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/convolution.h +1 -1
  923. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/convolution_grad.h +1 -1
  924. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/convolution_str.h +1 -1
  925. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/convolution_str_grad.h +1 -1
  926. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/copy.h +1 -1
  927. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cos.h +1 -1
  928. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cosh.h +1 -1
  929. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/count_nonzero.h +1 -1
  930. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cross.h +1 -1
  931. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cross_entropy_loss.h +44 -0
  932. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cross_entropy_loss_grad.h +44 -0
  933. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cummax.h +1 -1
  934. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cummin_ext.h +1 -1
  935. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/cumsum_ext.h +1 -1
  936. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/custom_ext.h +1 -1
  937. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dense.h +1 -1
  938. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/diag_ext.h +1 -1
  939. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/diagonal_view.h +44 -0
  940. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_all_gather.h +1 -1
  941. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_all_gather_into_tensor.h +1 -1
  942. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_all_gather_into_tensor_uneven.h +44 -0
  943. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_all_reduce.h +1 -1
  944. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_all_to_all_v.h +1 -1
  945. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_all_to_all_v_single.h +1 -1
  946. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_barrier.h +1 -1
  947. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_batch_isend_irecv.h +1 -1
  948. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_broadcast.h +1 -1
  949. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_gather.h +1 -1
  950. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_gather_into_tensor.h +1 -1
  951. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_irecv.h +1 -1
  952. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_isend.h +1 -1
  953. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_reduce.h +1 -1
  954. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_reduce_scatter.h +1 -1
  955. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_reduce_scatter_tensor.h +1 -1
  956. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_reduce_scatter_tensor_uneven.h +44 -0
  957. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_scatter.h +1 -1
  958. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dist_comm_scatter_tensor.h +1 -1
  959. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/div.h +1 -1
  960. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/divmod.h +1 -1
  961. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/divmods.h +1 -1
  962. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/divs.h +1 -1
  963. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dot.h +1 -1
  964. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dropout_do_mask_ext.h +1 -1
  965. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dropout_ext.h +1 -1
  966. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dropout_gen_mask_ext.h +1 -1
  967. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dropout_grad_ext.h +1 -1
  968. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/dynamic_quant_ext.h +1 -1
  969. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/einsum_ext.h +44 -0
  970. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/elu.h +1 -1
  971. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/elu_ext.h +1 -1
  972. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/elu_grad_ext.h +1 -1
  973. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/embedding.h +1 -1
  974. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/embedding_dense_backward.h +1 -1
  975. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/empty.h +44 -0
  976. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/empty_like.h +44 -0
  977. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/equal.h +1 -1
  978. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/equal_ext.h +1 -1
  979. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/erf.h +1 -1
  980. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/erfc.h +1 -1
  981. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/erfinv.h +1 -1
  982. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/exp.h +1 -1
  983. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/exp2.h +1 -1
  984. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/expand_as.h +1 -1
  985. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/expand_dims.h +1 -1
  986. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/expand_dims_view.h +44 -0
  987. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/expm1.h +1 -1
  988. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/eye.h +1 -1
  989. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/ffn_ext.h +1 -1
  990. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/fill_scalar.h +1 -1
  991. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/fill_tensor.h +1 -1
  992. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/flash_attention_score.h +1 -1
  993. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/flash_attention_score_grad.h +1 -1
  994. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/flatten_ext.h +1 -1
  995. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/floor.h +1 -1
  996. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/floor_div.h +1 -1
  997. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/floor_div_scalar.h +1 -1
  998. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/fmod_scalar.h +1 -1
  999. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/fmod_tensor.h +1 -1
  1000. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/frac.h +1 -1
  1001. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/full_like.h +1 -1
  1002. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/func_dropout_ext.h +44 -0
  1003. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/func_max_pool2d.h +44 -0
  1004. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/fused_infer_attention_score.h +1 -1
  1005. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gather_d.h +1 -1
  1006. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gather_d_grad_v2.h +1 -1
  1007. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gcd.h +1 -1
  1008. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gelu.h +1 -1
  1009. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gelu_ext.h +1 -1
  1010. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gelu_grad.h +1 -1
  1011. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gelu_grad_ext.h +1 -1
  1012. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/generator.h +1 -1
  1013. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/glu.h +1 -1
  1014. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/glu_grad.h +1 -1
  1015. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gmm.h +44 -0
  1016. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gmm_backward.h +1 -1
  1017. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gmm_backward_fusion.h +44 -0
  1018. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gmm_v2.h +44 -0
  1019. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gmm_v2_backward.h +1 -1
  1020. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/gmm_v2_backward_fusion.h +44 -0
  1021. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/greater.h +1 -1
  1022. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/greater_equal.h +1 -1
  1023. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/greater_equal_scalar.h +1 -1
  1024. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/grid_sampler_2d.h +1 -1
  1025. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/grid_sampler_2d_grad.h +1 -1
  1026. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/grid_sampler_3d.h +1 -1
  1027. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/grid_sampler_3d_grad.h +1 -1
  1028. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/group_norm.h +1 -1
  1029. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/group_norm_grad.h +1 -1
  1030. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/grouped_matmul.h +1 -1
  1031. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/grouped_matmul_v2.h +1 -1
  1032. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/grouped_matmul_v4.h +1 -1
  1033. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hardtanh.h +1 -1
  1034. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hardtanh_grad.h +1 -1
  1035. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/histc_ext.h +1 -1
  1036. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hshrink.h +1 -1
  1037. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hshrink_grad.h +1 -1
  1038. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hsigmoid.h +1 -1
  1039. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hsigmoid_grad.h +1 -1
  1040. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hswish.h +1 -1
  1041. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/hswish_grad.h +1 -1
  1042. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/identity.h +1 -1
  1043. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/im2col_ext.h +1 -1
  1044. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/incre_flash_attention.h +1 -1
  1045. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/index.h +1 -1
  1046. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/index_add_ext.h +1 -1
  1047. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/index_fill_scalar.h +1 -1
  1048. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/index_fill_tensor.h +1 -1
  1049. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/index_select.h +1 -1
  1050. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_comm_all_gather.h +1 -1
  1051. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_comm_all_reduce.h +1 -1
  1052. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_comm_all_to_all_v.h +1 -1
  1053. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_comm_irecv.h +1 -1
  1054. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_comm_isend.h +1 -1
  1055. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_comm_reduce_scatter.h +1 -1
  1056. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_index.h +1 -1
  1057. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_inplace_index_put.h +1 -1
  1058. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_moe_token_unpermute.h +44 -0
  1059. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inner_non_zero.h +1 -1
  1060. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_add_ext.h +1 -1
  1061. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_addmm.h +1 -1
  1062. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_adds_ext.h +1 -1
  1063. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_bernoulli_scalar.h +44 -0
  1064. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_bernoulli_tensor.h +44 -0
  1065. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_clamp_scalar.h +1 -1
  1066. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_clamp_tensor.h +1 -1
  1067. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_copy.h +1 -1
  1068. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_div.h +1 -1
  1069. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_divmod.h +1 -1
  1070. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_divmods.h +1 -1
  1071. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_divs.h +1 -1
  1072. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_elu.h +1 -1
  1073. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_erfinv.h +1 -1
  1074. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_exp.h +1 -1
  1075. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_exponential.h +44 -0
  1076. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_fill_diagonal.h +1 -1
  1077. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_fill_scalar.h +1 -1
  1078. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_fill_tensor.h +1 -1
  1079. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_floor.h +1 -1
  1080. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_floor_divide.h +1 -1
  1081. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_floor_divides.h +1 -1
  1082. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_grouped_matmul_add.h +1 -1
  1083. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_hardtanh.h +1 -1
  1084. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_index_add.h +1 -1
  1085. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_index_put.h +1 -1
  1086. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_log.h +1 -1
  1087. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_masked_fill_scalar.h +1 -1
  1088. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_masked_fill_tensor.h +1 -1
  1089. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_matmul_add.h +44 -0
  1090. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_mul.h +1 -1
  1091. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_muls.h +1 -1
  1092. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_normal.h +1 -1
  1093. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_put.h +1 -1
  1094. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_random.h +1 -1
  1095. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_relu.h +1 -1
  1096. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_remainder_tensor_scalar.h +44 -0
  1097. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_remainder_tensor_tensor.h +44 -0
  1098. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_scatter_add.h +1 -1
  1099. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_scatter_src.h +1 -1
  1100. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_scatter_src_reduce.h +1 -1
  1101. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_scatter_value.h +1 -1
  1102. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_scatter_value_reduce.h +1 -1
  1103. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_silu.h +44 -0
  1104. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_stop_gradient.h +1 -1
  1105. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_sub_ext.h +1 -1
  1106. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_sub_scalar.h +1 -1
  1107. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_tanh.h +1 -1
  1108. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_threshold.h +1 -1
  1109. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_uniform.h +1 -1
  1110. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/inplace_zero.h +1 -1
  1111. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/isclose.h +1 -1
  1112. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/isfinite.h +1 -1
  1113. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/isinf.h +1 -1
  1114. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/isneginf.h +1 -1
  1115. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/kl_div.h +1 -1
  1116. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/kl_div_grad.h +1 -1
  1117. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/kthvalue.h +1 -1
  1118. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/kv_cache_scatter_update.h +1 -1
  1119. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/l1_loss_backward_ext.h +1 -1
  1120. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/l1_loss_ext.h +1 -1
  1121. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/layer_norm_ext.h +1 -1
  1122. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/layer_norm_grad_ext.h +1 -1
  1123. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/leaky_relu_ext.h +1 -1
  1124. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/leaky_relu_grad_ext.h +1 -1
  1125. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/lerp.h +1 -1
  1126. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/lerp_scalar.h +1 -1
  1127. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/less.h +1 -1
  1128. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/less_equal.h +1 -1
  1129. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/lin_space_ext.h +1 -1
  1130. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/linalg_qr.h +1 -1
  1131. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/linalg_vector_norm.h +1 -1
  1132. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/log.h +1 -1
  1133. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/log10.h +1 -1
  1134. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/log1p.h +1 -1
  1135. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/log2.h +1 -1
  1136. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/log_softmax.h +1 -1
  1137. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/log_softmax_ext.h +1 -1
  1138. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/log_softmax_grad.h +1 -1
  1139. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logaddexp.h +1 -1
  1140. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logaddexp2.h +1 -1
  1141. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logical_and.h +1 -1
  1142. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logical_not.h +1 -1
  1143. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logical_or.h +1 -1
  1144. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logical_xor.h +1 -1
  1145. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logsigmoid.h +1 -1
  1146. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logsigmoid_grad.h +1 -1
  1147. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/logsumexp.h +1 -1
  1148. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/masked_fill.h +1 -1
  1149. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/masked_scatter.h +44 -0
  1150. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/masked_select.h +1 -1
  1151. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/masked_select_grad.h +1 -1
  1152. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/matmul.h +1 -1
  1153. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/matmul_allreduce_add_rmsnorm.h +1 -1
  1154. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/matmul_ext.h +1 -1
  1155. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/matmul_reduce_scatter.h +1 -1
  1156. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/matrix_inverse_ext.h +1 -1
  1157. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/max.h +1 -1
  1158. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/max_dim.h +1 -1
  1159. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/max_pool_grad_with_indices.h +1 -1
  1160. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/max_pool_grad_with_mask.h +1 -1
  1161. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/max_pool_with_indices.h +1 -1
  1162. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/max_pool_with_mask.h +1 -1
  1163. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/max_unpool2d_ext.h +1 -1
  1164. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/maximum.h +1 -1
  1165. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mean_ext.h +1 -1
  1166. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/median_dim.h +1 -1
  1167. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/median_ext.h +1 -1
  1168. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/meshgrid.h +1 -1
  1169. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/min.h +1 -1
  1170. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/min_dim.h +1 -1
  1171. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/minimum.h +1 -1
  1172. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mish_ext.h +1 -1
  1173. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mish_grad_ext.h +1 -1
  1174. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mla.h +44 -0
  1175. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mm_ext.h +1 -1
  1176. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_compute_expert_tokens.h +1 -1
  1177. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_distribute_combine.h +44 -0
  1178. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_distribute_dispatch.h +44 -0
  1179. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_finalize_routing.h +1 -1
  1180. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_gating_top_k_softmax.h +1 -1
  1181. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_init_routing.h +1 -1
  1182. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_init_routing_quant_v2.h +44 -0
  1183. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_init_routing_v2.h +1 -1
  1184. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_token_permute.h +1 -1
  1185. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_token_permute_grad.h +1 -1
  1186. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_token_unpermute.h +1 -1
  1187. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/moe_token_unpermute_grad.h +1 -1
  1188. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mse_loss_ext.h +1 -1
  1189. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mse_loss_grad_ext.h +1 -1
  1190. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mul.h +1 -1
  1191. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/muls.h +1 -1
  1192. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/multi_scale_deformable_attn.h +1 -1
  1193. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/multi_scale_deformable_attn_grad.h +1 -1
  1194. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/multinomial_ext.h +1 -1
  1195. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/mv.h +1 -1
  1196. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/nan_to_num.h +1 -1
  1197. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/nansum.h +1 -1
  1198. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/narrow.h +1 -1
  1199. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/narrow_view.h +44 -0
  1200. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/ne_scalar.h +1 -1
  1201. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/neg.h +1 -1
  1202. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/new_empty.h +44 -0
  1203. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/new_full.h +44 -0
  1204. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/new_ones.h +1 -1
  1205. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/new_zeros.h +1 -1
  1206. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/nllloss.h +1 -1
  1207. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/nllloss_2d.h +1 -1
  1208. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/nllloss_2d_grad.h +1 -1
  1209. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/nllloss_grad.h +1 -1
  1210. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/non_zero.h +1 -1
  1211. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/non_zero_ext.h +1 -1
  1212. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/norm.h +1 -1
  1213. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/normal_float_float.h +1 -1
  1214. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/normal_float_tensor.h +1 -1
  1215. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/normal_tensor_float.h +1 -1
  1216. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/normal_tensor_tensor.h +1 -1
  1217. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/not_equal.h +1 -1
  1218. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/one_hot_ext.h +1 -1
  1219. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/ones.h +1 -1
  1220. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/ones_like_ext.h +1 -1
  1221. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/outer.h +1 -1
  1222. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/paged_attention.h +44 -0
  1223. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/pixel_shuffle.h +1 -1
  1224. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/polar.h +1 -1
  1225. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/pow.h +1 -1
  1226. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/pow_scalar_tensor.h +1 -1
  1227. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/pow_tensor_scalar.h +1 -1
  1228. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/prelu.h +1 -1
  1229. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/prelu_grad.h +1 -1
  1230. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/prod_ext.h +1 -1
  1231. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/prompt_flash_attention.h +1 -1
  1232. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/quant_batch_matmul.h +1 -1
  1233. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/quant_matmul.h +44 -0
  1234. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/quant_v2.h +1 -1
  1235. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/rand_ext.h +1 -1
  1236. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/rand_like_ext.h +1 -1
  1237. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/randint.h +1 -1
  1238. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/randint_like.h +1 -1
  1239. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/randn.h +1 -1
  1240. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/randn_like.h +1 -1
  1241. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/randperm_ext.h +1 -1
  1242. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reciprocal.h +1 -1
  1243. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reduce_all.h +1 -1
  1244. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reduce_any.h +1 -1
  1245. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reduce_max.h +1 -1
  1246. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reduce_min.h +1 -1
  1247. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reflection_pad_1d.h +1 -1
  1248. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reflection_pad_1d_grad.h +1 -1
  1249. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reflection_pad_2d.h +1 -1
  1250. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reflection_pad_2d_grad.h +1 -1
  1251. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reflection_pad_3d.h +1 -1
  1252. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reflection_pad_3d_grad.h +1 -1
  1253. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/relu.h +1 -1
  1254. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/relu_grad.h +1 -1
  1255. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/remainder_scalar_tensor.h +1 -1
  1256. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/remainder_tensor_scalar.h +1 -1
  1257. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/remainder_tensor_tensor.h +1 -1
  1258. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/repeat.h +1 -1
  1259. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/repeat_interleave_grad.h +1 -1
  1260. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/repeat_interleave_int.h +1 -1
  1261. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/repeat_interleave_tensor.h +1 -1
  1262. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/replication_pad_1d.h +1 -1
  1263. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/replication_pad_1d_grad.h +1 -1
  1264. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/replication_pad_2d.h +1 -1
  1265. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/replication_pad_2d_grad.h +1 -1
  1266. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/replication_pad_3d.h +1 -1
  1267. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/replication_pad_3d_grad.h +1 -1
  1268. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reshape.h +1 -1
  1269. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reshape_and_cache.h +44 -0
  1270. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/reverse_v2.h +1 -1
  1271. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/ring_attention_update.h +44 -0
  1272. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/rms_norm.h +1 -1
  1273. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/rms_norm_grad.h +1 -1
  1274. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/roll.h +1 -1
  1275. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/rotary_position_embedding.h +1 -1
  1276. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/rotary_position_embedding_grad.h +1 -1
  1277. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/round.h +1 -1
  1278. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/rsqrt.h +1 -1
  1279. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/scatter.h +1 -1
  1280. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/scatter_add_ext.h +1 -1
  1281. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/scatter_value.h +1 -1
  1282. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/searchsorted.h +1 -1
  1283. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/select.h +1 -1
  1284. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/select_ext_view.h +44 -0
  1285. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/select_v2.h +1 -1
  1286. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/selu_ext.h +1 -1
  1287. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/selu_grad.h +1 -1
  1288. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sigmoid.h +1 -1
  1289. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sigmoid_grad.h +1 -1
  1290. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sign.h +1 -1
  1291. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/silent_check_v2.h +1 -1
  1292. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/silent_check_v3.h +1 -1
  1293. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/silu.h +1 -1
  1294. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/silu_grad.h +1 -1
  1295. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sin.h +1 -1
  1296. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sinc.h +1 -1
  1297. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sinh.h +1 -1
  1298. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/slice.h +1 -1
  1299. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/slice_ext.h +1 -1
  1300. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/slice_ext_view.h +44 -0
  1301. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/smooth_l1_loss.h +1 -1
  1302. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/smooth_l1_loss_grad.h +1 -1
  1303. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/soft_margin_loss.h +1 -1
  1304. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/soft_margin_loss_grad.h +1 -1
  1305. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/softmax.h +1 -1
  1306. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/softmax_backward.h +1 -1
  1307. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/softplus_ext.h +1 -1
  1308. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/softplus_grad_ext.h +1 -1
  1309. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/softshrink.h +1 -1
  1310. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/softshrink_grad.h +1 -1
  1311. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sort_ext.h +1 -1
  1312. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/speed_fusion_attention.h +1 -1
  1313. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/speed_fusion_attention_grad.h +1 -1
  1314. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/split.h +1 -1
  1315. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/split_tensor.h +1 -1
  1316. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/split_tensor_view.h +44 -0
  1317. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/split_with_size.h +1 -1
  1318. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/split_with_size_view.h +44 -0
  1319. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sqrt.h +1 -1
  1320. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/square.h +1 -1
  1321. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/squeeze.h +1 -1
  1322. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/stack_ext.h +1 -1
  1323. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/std.h +1 -1
  1324. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/std_mean.h +1 -1
  1325. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sub.h +1 -1
  1326. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sub_ext.h +1 -1
  1327. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sub_scalar.h +1 -1
  1328. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/sum_ext.h +1 -1
  1329. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/swiglu.h +1 -1
  1330. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/swiglu_grad.h +1 -1
  1331. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/t_ext.h +1 -1
  1332. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/take.h +1 -1
  1333. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/tan.h +1 -1
  1334. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/tanh.h +1 -1
  1335. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/tanh_grad.h +1 -1
  1336. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/tensor_scatter_elements.h +1 -1
  1337. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/threshold.h +1 -1
  1338. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/threshold_grad.h +1 -1
  1339. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/tile.h +1 -1
  1340. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/topk_ext.h +1 -1
  1341. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/trace_ext.h +1 -1
  1342. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/transpose.h +1 -1
  1343. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/transpose_ext_view.h +44 -0
  1344. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/transpose_view.h +44 -0
  1345. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/triangular_solve.h +1 -1
  1346. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/tril_ext.h +1 -1
  1347. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/triu.h +1 -1
  1348. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/trunc.h +1 -1
  1349. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/type_as.h +1 -1
  1350. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/uniform_ext.h +1 -1
  1351. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/unique2.h +1 -1
  1352. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/unique_consecutive.h +1 -1
  1353. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/unique_dim.h +1 -1
  1354. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/unstack_ext_view.h +44 -0
  1355. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_bicubic2d.h +1 -1
  1356. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_bicubic2d_grad.h +1 -1
  1357. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_bilinear2d.h +1 -1
  1358. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_bilinear2d_grad.h +1 -1
  1359. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_linear1d.h +1 -1
  1360. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_linear1d_grad.h +1 -1
  1361. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_nearest1d.h +1 -1
  1362. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_nearest1d_grad.h +1 -1
  1363. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_nearest2d.h +1 -1
  1364. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_nearest2d_grad.h +1 -1
  1365. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_nearest3d.h +1 -1
  1366. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_nearest3d_grad.h +1 -1
  1367. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_trilinear3d.h +1 -1
  1368. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/upsample_trilinear3d_grad.h +1 -1
  1369. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/var.h +1 -1
  1370. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/var_mean.h +1 -1
  1371. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/view.h +1 -1
  1372. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/view_as.h +1 -1
  1373. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/weight_quant_batch_matmul.h +1 -1
  1374. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/xlogy.h +1 -1
  1375. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/xlogy_scalar_other.h +1 -1
  1376. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/xlogy_scalar_self.h +1 -1
  1377. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/zeros.h +1 -1
  1378. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/zeros_like_ext.h +1 -1
  1379. mindspore/include/mindspore/ccsrc/pyboost/comm_handle.h +6 -2
  1380. mindspore/include/mindspore/ccsrc/pyboost/customize/any.h +39 -0
  1381. mindspore/include/mindspore/ccsrc/pyboost/customize/cell_backward_hook.h +27 -0
  1382. mindspore/include/mindspore/ccsrc/pyboost/customize/divmod.h +3 -3
  1383. mindspore/include/mindspore/ccsrc/pyboost/customize/einsum_ext.h +38 -0
  1384. mindspore/include/mindspore/ccsrc/pyboost/customize/identity.h +2 -2
  1385. mindspore/include/mindspore/ccsrc/pyboost/customize/meshgrid.h +7 -4
  1386. mindspore/include/mindspore/ccsrc/pyboost/customize/op_common.h +12 -15
  1387. mindspore/include/mindspore/ccsrc/pyboost/customize/pixel_shuffle.h +2 -3
  1388. mindspore/include/mindspore/ccsrc/pyboost/customize/reshape.h +4 -3
  1389. mindspore/include/mindspore/ccsrc/pyboost/customize/searchsorted.h +4 -5
  1390. mindspore/include/mindspore/ccsrc/pyboost/functions/auto_generate/auto_grad_op_reg.h +1591 -1387
  1391. mindspore/include/mindspore/ccsrc/pyboost/functions/auto_generate/functions.h +578 -481
  1392. mindspore/include/mindspore/ccsrc/pyboost/grad_functions/pyboost_grad_functions.h +3 -0
  1393. mindspore/include/mindspore/ccsrc/pyboost/grad_functions/value_converter.h +30 -4
  1394. mindspore/include/mindspore/ccsrc/pyboost/op_register.h +52 -0
  1395. mindspore/include/mindspore/ccsrc/pyboost/op_runner.h +45 -19
  1396. mindspore/include/mindspore/ccsrc/pyboost/pyboost_utils.h +106 -62
  1397. mindspore/include/mindspore/ccsrc/pynative/base.h +22 -24
  1398. mindspore/include/mindspore/ccsrc/pynative/forward/do_pyboost_cast.h +71 -67
  1399. mindspore/include/mindspore/ccsrc/pynative/forward/forward.h +14 -12
  1400. mindspore/include/mindspore/ccsrc/pynative/forward/forward_task.h +34 -2
  1401. mindspore/include/mindspore/ccsrc/pynative/grad/custom_function.h +14 -7
  1402. mindspore/include/mindspore/ccsrc/pynative/grad/function/auto_generate/pyboost_native_grad_functions.h +501 -457
  1403. mindspore/include/mindspore/ccsrc/pynative/grad/function/func_builder.h +3 -3
  1404. mindspore/include/mindspore/ccsrc/pynative/grad/function/func_grad.h +280 -96
  1405. mindspore/include/mindspore/ccsrc/pynative/grad/function/func_pass.h +0 -1
  1406. mindspore/include/mindspore/ccsrc/pynative/grad/function.h +28 -23
  1407. mindspore/include/mindspore/ccsrc/pynative/grad/function_py.h +19 -11
  1408. mindspore/include/mindspore/ccsrc/pynative/grad/grad.h +30 -97
  1409. mindspore/include/mindspore/ccsrc/pynative/grad/grad_utils.h +39 -23
  1410. mindspore/include/mindspore/ccsrc/pynative/grad/hook_py.h +21 -22
  1411. mindspore/include/mindspore/ccsrc/pynative/grad/jit/jit_grad.h +2 -26
  1412. mindspore/include/mindspore/ccsrc/pynative/grad/top_cell.h +8 -150
  1413. mindspore/include/mindspore/ccsrc/pynative/op_function/auto_generate/pyboost_api.h +564 -0
  1414. mindspore/include/mindspore/ccsrc/pynative/op_function/auto_generate/pyboost_core.h +564 -0
  1415. mindspore/include/mindspore/ccsrc/pynative/op_function/auto_generate/tensor_func_utils.h +499 -484
  1416. mindspore/include/mindspore/ccsrc/pynative/op_function/comm_handle_py.h +2 -0
  1417. mindspore/include/mindspore/ccsrc/pynative/op_function/converter.h +11 -0
  1418. mindspore/include/mindspore/ccsrc/pynative/op_function/customize/direct_ops.h +2 -12
  1419. mindspore/include/mindspore/ccsrc/pynative/predict_out_type_map.h +3 -0
  1420. mindspore/include/mindspore/ccsrc/pynative/pynative_execute.h +6 -2
  1421. mindspore/include/mindspore/ccsrc/pynative/pynative_utils.h +39 -43
  1422. mindspore/include/mindspore/ccsrc/runtime/collective/collective_communication_lib.h +17 -1
  1423. mindspore/include/mindspore/ccsrc/runtime/collective/communication_group.h +5 -0
  1424. mindspore/include/mindspore/ccsrc/runtime/collective/dummy_collective_communication_lib.h +2 -1
  1425. mindspore/include/mindspore/ccsrc/runtime/device/device_address_utils.h +55 -50
  1426. mindspore/include/mindspore/ccsrc/runtime/device/memory_scheduler.h +2 -1
  1427. mindspore/include/mindspore/ccsrc/runtime/device/move_to.h +3 -0
  1428. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/auto_mem_offload.h +0 -1
  1429. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/capture_graph.h +35 -0
  1430. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/hal_res_base.h +20 -17
  1431. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/hal_res_manager.h +7 -3
  1432. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/loadable_device_address.h +1 -1
  1433. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/memory_manager.h +1 -1
  1434. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/swap_manager.h +2 -2
  1435. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/tensor_array.h +1 -1
  1436. mindspore/include/mindspore/ccsrc/runtime/device/res_manager/utils/utils.h +0 -1
  1437. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/abstract_actor.h +46 -33
  1438. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/actor_common.h +30 -19
  1439. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/actor_dump.h +4 -3
  1440. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/actor_set.h +0 -4
  1441. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/any_type_kernel_actor.h +7 -61
  1442. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/condition_gather_runner.h +74 -0
  1443. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/condition_switch_runner.h +89 -0
  1444. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/control_actor.h +37 -41
  1445. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/entrance_actor.h +11 -11
  1446. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/exit_actor.h +8 -9
  1447. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/gather_actor.h +6 -7
  1448. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/stack_actor.h +11 -11
  1449. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/switch_actor.h +2 -2
  1450. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/copy_actor.h +12 -14
  1451. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/data_prepare_actor.h +28 -20
  1452. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/data_source_actor.h +10 -58
  1453. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/debug_actor.h +11 -10
  1454. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/debug_aware_actor.h +2 -2
  1455. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/fusion/fusion_actor.h +2 -2
  1456. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/kernel_actor.h +90 -83
  1457. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/kernel_async_infer_actor.h +3 -1
  1458. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/kernel_async_launch_actor.h +11 -1
  1459. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/kernel_async_resize_actor.h +3 -1
  1460. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/kernel_infer_actor.h +4 -4
  1461. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/kernel_resize_actor.h +4 -4
  1462. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/kernel_runner.h +405 -0
  1463. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/loop_count_actor.h +11 -11
  1464. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/memory/memory_alloc_actor.h +3 -3
  1465. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/memory/memory_free_actor.h +2 -3
  1466. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/memory/memory_swap_actor.h +4 -4
  1467. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/memory_aware_actor.h +7 -7
  1468. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/memory_manager_actor.h +18 -17
  1469. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/output_actor.h +13 -7
  1470. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/profiler_actor.h +2 -2
  1471. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/recorder_actor.h +2 -2
  1472. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/rpc/mux_send_actor.h +1 -1
  1473. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/rpc/recv_actor.h +6 -10
  1474. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/rpc/rpc_actor.h +2 -14
  1475. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/rpc/send_actor.h +4 -4
  1476. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/super_kernel_actor.h +75 -57
  1477. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/any_type_graph_scheduler.h +0 -33
  1478. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/control_node_parser.h +13 -1
  1479. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/control_node_scheduler.h +1 -2
  1480. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/device_tensor_copy_store.h +14 -14
  1481. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/device_tensor_store.h +28 -27
  1482. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/execution_order_check/comm_execution_order_check.h +17 -7
  1483. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/execution_order_check/kernel_cache.h +24 -4
  1484. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/graph_capture/graph_capture_manager.h +117 -0
  1485. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/graph_compiler.h +4 -71
  1486. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/graph_parameter_store.h +88 -142
  1487. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/graph_scheduler.h +9 -22
  1488. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/parameter_store.h +4 -0
  1489. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/pipeline/async_lf_queue.h +97 -0
  1490. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/pipeline/lf_ring_queue.h +205 -0
  1491. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/pipeline/runtime_pipeline.h +71 -0
  1492. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/pre_launch_comm.h +10 -2
  1493. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/rpc_node_scheduler.h +4 -13
  1494. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/scheduler_helper.h +12 -1
  1495. mindspore/include/mindspore/ccsrc/runtime/hardware/device_context.h +44 -173
  1496. mindspore/include/mindspore/ccsrc/runtime/hardware/device_context_manager.h +1 -1
  1497. mindspore/include/mindspore/ccsrc/runtime/pipeline/async_rqueue.h +2 -2
  1498. mindspore/include/mindspore/ccsrc/runtime/pipeline/ring_queue.h +1 -1
  1499. mindspore/include/mindspore/ccsrc/runtime/pipeline/task/task.h +1 -1
  1500. mindspore/include/mindspore/ccsrc/runtime/pynative/graph_adapter.h +0 -1
  1501. mindspore/include/mindspore/ccsrc/runtime/pynative/ir_converter.h +8 -7
  1502. mindspore/include/mindspore/ccsrc/runtime/pynative/op_runner.h +6 -6
  1503. mindspore/include/mindspore/ccsrc/runtime/pynative/op_runtime_info.h +4 -4
  1504. mindspore/include/mindspore/ccsrc/utils/dlopen_macro.h +2 -2
  1505. mindspore/include/mindspore/core/include/abstract/abstract_function.h +54 -13
  1506. mindspore/include/mindspore/core/include/abstract/abstract_value.h +66 -3
  1507. mindspore/include/mindspore/core/include/abstract/ops/primitive_infer_map.h +1 -1
  1508. mindspore/include/mindspore/core/include/abstract/param_validator.h +3 -2
  1509. mindspore/include/mindspore/core/include/base/bfloat16.h +1 -1
  1510. mindspore/include/mindspore/core/include/base/float16.h +4 -3
  1511. mindspore/include/mindspore/core/include/base/float8_e4m3fn.h +264 -0
  1512. mindspore/include/mindspore/core/include/base/float8_e5m2.h +260 -0
  1513. mindspore/include/mindspore/core/include/base/hifloat8.h +54 -58
  1514. mindspore/include/mindspore/core/include/ir/anf.h +37 -8
  1515. mindspore/include/mindspore/core/include/ir/device_sync.h +17 -1
  1516. mindspore/include/mindspore/core/include/ir/dtype/number.h +123 -9
  1517. mindspore/include/mindspore/core/include/ir/dtype/op_dtype.h +48 -0
  1518. mindspore/include/mindspore/core/include/ir/dtype.h +4 -0
  1519. mindspore/include/mindspore/core/include/ir/func_graph.h +2 -0
  1520. mindspore/include/mindspore/core/include/ir/func_graph_cloner.h +2 -0
  1521. mindspore/include/mindspore/core/include/ir/meta_grad_data.h +4 -13
  1522. mindspore/include/mindspore/core/include/ir/primitive.h +34 -2
  1523. mindspore/include/mindspore/core/include/ir/scalar.h +2 -2
  1524. mindspore/include/mindspore/core/include/ir/scope.h +16 -3
  1525. mindspore/include/mindspore/core/include/ir/tensor.h +922 -41
  1526. mindspore/include/mindspore/core/include/ir/tensor_py_wrapperbase.h +11 -11
  1527. mindspore/include/mindspore/core/include/ir/tensor_storage_info.h +1 -0
  1528. mindspore/include/mindspore/core/include/load_mindir/infer_mindir.h +3 -2
  1529. mindspore/include/mindspore/core/include/mindapi/base/macros.h +3 -3
  1530. mindspore/include/mindspore/core/include/mindapi/base/type_id.h +3 -0
  1531. mindspore/include/mindspore/core/include/mindapi/base/types.h +7 -0
  1532. mindspore/include/mindspore/core/include/ops/op_def.h +2 -31
  1533. mindspore/include/mindspore/core/include/symbolic_shape/operation_builder.h +1 -1
  1534. mindspore/include/mindspore/core/include/utils/anf_utils.h +2 -0
  1535. mindspore/include/mindspore/core/include/utils/callback_handler.h +1 -1
  1536. mindspore/include/mindspore/core/include/utils/compact_set.h +4 -0
  1537. mindspore/include/mindspore/core/include/utils/core_op_utils.h +1 -1
  1538. mindspore/include/mindspore/core/include/utils/device_manager_conf.h +4 -0
  1539. mindspore/include/mindspore/core/include/utils/flags.h +0 -2
  1540. mindspore/include/mindspore/core/include/utils/info.h +7 -0
  1541. mindspore/include/mindspore/core/include/utils/llm_manager.h +2 -0
  1542. mindspore/include/mindspore/core/include/utils/log_adapter.h +11 -2
  1543. mindspore/include/mindspore/core/include/utils/ms_context.h +13 -11
  1544. mindspore/include/mindspore/core/include/utils/ms_exception.h +42 -5
  1545. mindspore/include/mindspore/core/include/utils/ms_utils.h +4 -8
  1546. mindspore/include/mindspore/core/include/utils/ms_utils_secure.h +1 -1
  1547. mindspore/include/mindspore/core/include/utils/phase.h +17 -2
  1548. mindspore/include/mindspore/core/include/utils/system/base.h +1 -1
  1549. mindspore/include/mindspore/core/include/utils/tensor_hook_map.h +30 -0
  1550. mindspore/include/mindspore/core/mindrt/include/actor/op_actor.h +68 -0
  1551. mindspore/include/mindspore/core/mindrt/include/async/async.h +2 -2
  1552. mindspore/include/mindspore/core/mindrt/include/thread/actor_threadpool.h +4 -0
  1553. mindspore/include/mindspore/core/mindrt/include/thread/core_affinity.h +1 -1
  1554. mindspore/include/mindspore/core/mindrt/include/thread/hqueue.h +6 -6
  1555. mindspore/include/mindspore/core/mindrt/include/thread/threadpool.h +6 -2
  1556. mindspore/include/mindspore/ops/grad/grad_utils.h +25 -3
  1557. mindspore/include/mindspore/ops/infer/all_gather_v.h +39 -0
  1558. mindspore/include/mindspore/ops/infer/all_to_all.h +38 -0
  1559. mindspore/include/mindspore/ops/infer/dtype.h +12 -0
  1560. mindspore/include/mindspore/ops/infer/ops_func_impl/acosh.h +2 -9
  1561. mindspore/include/mindspore/ops/infer/ops_func_impl/asinh.h +2 -9
  1562. mindspore/include/mindspore/ops/infer/ops_func_impl/atanh.h +4 -9
  1563. mindspore/include/mindspore/ops/infer/ops_func_impl/batch_norm_ext.h +6 -11
  1564. mindspore/include/mindspore/ops/infer/ops_func_impl/batch_norm_grad_ext.h +5 -4
  1565. mindspore/include/mindspore/ops/infer/ops_func_impl/bitwise_and_scalar.h +4 -5
  1566. mindspore/include/mindspore/ops/infer/ops_func_impl/bitwise_and_tensor.h +3 -5
  1567. mindspore/include/mindspore/ops/infer/ops_func_impl/bitwise_or_scalar.h +3 -10
  1568. mindspore/include/mindspore/ops/infer/ops_func_impl/bitwise_or_tensor.h +2 -10
  1569. mindspore/include/mindspore/ops/infer/ops_func_impl/bitwise_xor_scalar.h +3 -10
  1570. mindspore/include/mindspore/ops/infer/ops_func_impl/bitwise_xor_tensor.h +2 -10
  1571. mindspore/include/mindspore/ops/infer/ops_func_impl/broadcast_to.h +0 -1
  1572. mindspore/include/mindspore/ops/infer/ops_func_impl/broadcast_to_view.h +32 -0
  1573. mindspore/include/mindspore/ops/infer/ops_func_impl/cell_backward_hook.h +32 -0
  1574. mindspore/include/mindspore/ops/infer/ops_func_impl/chunk.h +0 -2
  1575. mindspore/include/mindspore/ops/infer/ops_func_impl/chunk_view.h +32 -0
  1576. mindspore/include/mindspore/ops/infer/ops_func_impl/cross_entropy_loss.h +36 -0
  1577. mindspore/include/mindspore/ops/infer/ops_func_impl/cross_entropy_loss_grad.h +36 -0
  1578. mindspore/include/mindspore/ops/infer/ops_func_impl/diagonal_view.h +32 -0
  1579. mindspore/include/mindspore/ops/infer/ops_func_impl/dist_comm_all_gather_into_tensor_uneven.h +33 -0
  1580. mindspore/include/mindspore/ops/infer/ops_func_impl/dist_comm_reduce_scatter_tensor_uneven.h +33 -0
  1581. mindspore/include/mindspore/ops/infer/ops_func_impl/dump_gradient.h +33 -0
  1582. mindspore/include/mindspore/ops/infer/ops_func_impl/dynamic_ntk.h +32 -0
  1583. mindspore/include/mindspore/ops/infer/ops_func_impl/eltwise_op.h +4 -10
  1584. mindspore/include/mindspore/ops/infer/ops_func_impl/empty.h +7 -3
  1585. mindspore/include/mindspore/ops/infer/ops_func_impl/empty_like.h +7 -3
  1586. mindspore/include/mindspore/ops/infer/ops_func_impl/exp.h +3 -4
  1587. mindspore/include/mindspore/ops/infer/ops_func_impl/expand_dims.h +1 -2
  1588. mindspore/include/mindspore/ops/infer/ops_func_impl/expand_dims_view.h +31 -0
  1589. mindspore/include/mindspore/ops/infer/ops_func_impl/fused_add_topk_div.h +56 -0
  1590. mindspore/include/mindspore/ops/infer/ops_func_impl/grouped_matmul.h +13 -4
  1591. mindspore/include/mindspore/ops/infer/ops_func_impl/grouped_matmul_base.h +8 -9
  1592. mindspore/include/mindspore/ops/infer/ops_func_impl/grouped_matmul_v2.h +7 -1
  1593. mindspore/include/mindspore/ops/infer/ops_func_impl/grouped_matmul_v4.h +3 -1
  1594. mindspore/include/mindspore/ops/infer/ops_func_impl/inner_moe_token_unpermute.h +36 -0
  1595. mindspore/include/mindspore/ops/infer/ops_func_impl/inplace_bernoulli_scalar.h +25 -0
  1596. mindspore/include/mindspore/ops/infer/ops_func_impl/inplace_bernoulli_tensor.h +40 -0
  1597. mindspore/include/mindspore/ops/infer/ops_func_impl/inplace_matmul_add.h +34 -0
  1598. mindspore/include/mindspore/ops/infer/ops_func_impl/inplace_remainder_tensor_scalar.h +35 -0
  1599. mindspore/include/mindspore/ops/infer/ops_func_impl/inplace_remainder_tensor_tensor.h +35 -0
  1600. mindspore/include/mindspore/ops/infer/ops_func_impl/inplace_silu.h +35 -0
  1601. mindspore/include/mindspore/ops/infer/ops_func_impl/kv_scale_cache.h +48 -0
  1602. mindspore/include/mindspore/ops/infer/ops_func_impl/masked_fill.h +4 -3
  1603. mindspore/include/mindspore/ops/infer/ops_func_impl/masked_scatter.h +37 -0
  1604. mindspore/include/mindspore/ops/infer/ops_func_impl/matmul_fusion_utils.h +6 -0
  1605. mindspore/include/mindspore/ops/infer/ops_func_impl/matmul_split_silu_fastgelu_add_mul_out1.h +34 -0
  1606. mindspore/include/mindspore/ops/infer/ops_func_impl/matmul_split_silu_mul_out1.h +34 -0
  1607. mindspore/include/mindspore/ops/infer/ops_func_impl/matmul_split_silu_out2.h +1 -1
  1608. mindspore/include/mindspore/ops/infer/ops_func_impl/max_pool_grad_with_indices.h +2 -8
  1609. mindspore/include/mindspore/ops/infer/ops_func_impl/max_pool_grad_with_mask.h +4 -2
  1610. mindspore/include/mindspore/ops/infer/ops_func_impl/max_pool_with_indices.h +6 -4
  1611. mindspore/include/mindspore/ops/infer/ops_func_impl/max_pool_with_mask.h +6 -4
  1612. mindspore/include/mindspore/ops/infer/ops_func_impl/mla.h +54 -0
  1613. mindspore/include/mindspore/ops/infer/ops_func_impl/mla_preprocess.h +75 -0
  1614. mindspore/include/mindspore/ops/infer/ops_func_impl/moe_distribute_combine.h +34 -0
  1615. mindspore/include/mindspore/ops/infer/ops_func_impl/moe_distribute_dispatch.h +37 -0
  1616. mindspore/include/mindspore/ops/infer/ops_func_impl/moe_init_routing_quant_v2.h +39 -0
  1617. mindspore/include/mindspore/ops/infer/ops_func_impl/narrow.h +0 -1
  1618. mindspore/include/mindspore/ops/infer/ops_func_impl/narrow_view.h +29 -0
  1619. mindspore/include/mindspore/ops/infer/ops_func_impl/neg.h +1 -6
  1620. mindspore/include/mindspore/ops/infer/ops_func_impl/new_empty.h +7 -3
  1621. mindspore/include/mindspore/ops/infer/ops_func_impl/new_full.h +37 -0
  1622. mindspore/include/mindspore/ops/infer/ops_func_impl/normal_float_float.h +1 -0
  1623. mindspore/include/mindspore/ops/infer/ops_func_impl/ones_like.h +2 -6
  1624. mindspore/include/mindspore/ops/infer/ops_func_impl/ones_like_ext.h +1 -2
  1625. mindspore/include/mindspore/ops/infer/ops_func_impl/q_matmul_split_silu_fastgelu_add_mul_out1.h +34 -0
  1626. mindspore/include/mindspore/ops/infer/ops_func_impl/q_matmul_split_silu_mul_out1.h +34 -0
  1627. mindspore/include/mindspore/ops/infer/ops_func_impl/quant_matmul.h +32 -0
  1628. mindspore/include/mindspore/ops/infer/ops_func_impl/reciprocal.h +4 -9
  1629. mindspore/include/mindspore/ops/infer/ops_func_impl/reduce_any.h +4 -5
  1630. mindspore/include/mindspore/ops/infer/ops_func_impl/reduce_arithmetic.h +2 -1
  1631. mindspore/include/mindspore/ops/infer/ops_func_impl/remainder_tensor_scalar.h +4 -4
  1632. mindspore/include/mindspore/ops/infer/ops_func_impl/ring_attention_update.h +36 -0
  1633. mindspore/include/mindspore/ops/infer/ops_func_impl/select_ext_view.h +39 -0
  1634. mindspore/include/mindspore/ops/infer/ops_func_impl/sigmoid.h +4 -5
  1635. mindspore/include/mindspore/ops/infer/ops_func_impl/slice_ext.h +0 -1
  1636. mindspore/include/mindspore/ops/infer/ops_func_impl/slice_ext_view.h +29 -0
  1637. mindspore/include/mindspore/ops/infer/ops_func_impl/split_tensor.h +0 -1
  1638. mindspore/include/mindspore/ops/infer/ops_func_impl/split_tensor_view.h +32 -0
  1639. mindspore/include/mindspore/ops/infer/ops_func_impl/split_with_size.h +0 -2
  1640. mindspore/include/mindspore/ops/infer/ops_func_impl/split_with_size_view.h +32 -0
  1641. mindspore/include/mindspore/ops/infer/ops_func_impl/square.h +2 -10
  1642. mindspore/include/mindspore/ops/infer/ops_func_impl/swiglu_dynamic_quant.h +32 -0
  1643. mindspore/include/mindspore/ops/infer/ops_func_impl/topprouter.h +36 -0
  1644. mindspore/include/mindspore/ops/infer/ops_func_impl/transpose.h +0 -2
  1645. mindspore/include/mindspore/ops/infer/ops_func_impl/transpose_ext_view.h +34 -0
  1646. mindspore/include/mindspore/ops/infer/ops_func_impl/transpose_view.h +29 -0
  1647. mindspore/include/mindspore/ops/infer/ops_func_impl/unstack_ext_view.h +37 -0
  1648. mindspore/include/mindspore/ops/infer/ops_func_impl/zeros_like_ext.h +1 -2
  1649. mindspore/include/mindspore/ops/infer/reduce_scatter.h +3 -1
  1650. mindspore/include/mindspore/ops/infer/reduce_scatter_v.h +38 -0
  1651. mindspore/include/mindspore/ops/kernel/ascend/acl/acl_kernel_mod.h +3 -0
  1652. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/acl_adapter_info.h +1 -1
  1653. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/custom/custom_aclnn_utils.h +95 -0
  1654. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/custom/custom_op_api_cache.h +40 -0
  1655. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/custom/custom_op_api_exec.h +84 -0
  1656. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/op_api_cache.h +18 -8
  1657. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/op_api_convert.h +40 -114
  1658. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/op_api_exec.h +41 -32
  1659. mindspore/include/mindspore/ops/kernel/ascend/acl_ir/op_api_util.h +6 -0
  1660. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/common/kernel_base.h +1 -1
  1661. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/common/kernel_log.h +11 -11
  1662. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/format_transfer/formats_definitions.h +5 -1
  1663. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/format_transfer/register_format_transfer.h +5 -1
  1664. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/inc/ms_cpu_kernel.h +1 -1
  1665. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/concat.h +1 -1
  1666. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/dct.h +1 -1
  1667. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/dctn.h +1 -1
  1668. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/fft_ortho.h +1 -1
  1669. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/fft_shapecopy.h +1 -1
  1670. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/fftbase.h +1 -1
  1671. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/fftfreq.h +1 -1
  1672. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/fftnbase.h +1 -1
  1673. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/irfft_double.h +1 -1
  1674. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/nms_with_mask.h +0 -1
  1675. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/random/philox_random_dist.h +1 -1
  1676. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/random/random_distributions.h +27 -25
  1677. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/topprouter.h +64 -0
  1678. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/eigen_tensor.h +18 -15
  1679. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/fused_sparse_utils.h +1 -1
  1680. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/kernel_util.h +2 -2
  1681. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/philox_random.h +75 -138
  1682. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/range_sampler.h +7 -3
  1683. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/sampling_kernels.h +18 -15
  1684. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/sparse_group.h +18 -15
  1685. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/utils/sparse_tensor.h +18 -15
  1686. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/adaptive_avg_pool_3d_grad_op.h +0 -11
  1687. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/adaptive_avg_pool_3d_op.h +0 -11
  1688. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/adaptive_max_pool3_d_grad_op.h +0 -14
  1689. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/adaptive_max_pool3d_op.h +0 -18
  1690. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/adaptive_max_pool_2d_grad_op.h +0 -14
  1691. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/adjust_contrastv2_op.h +0 -21
  1692. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/arg_max_op.h +0 -22
  1693. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/bartlett_window_op.h +0 -19
  1694. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/cauchy_op.h +0 -11
  1695. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/cholesky_solve_op.h +0 -23
  1696. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/coalesce_op.h +0 -24
  1697. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/csr_sparse_matrix_to_dense_op.h +0 -15
  1698. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/dense_to_csr_sparse_matrix_op.h +0 -16
  1699. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/eig_op.h +0 -17
  1700. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/exp.h +0 -18
  1701. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/fractional_max_pool_grad_with_fixed_ksize_op.h +0 -22
  1702. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/fractional_max_pool_with_fixed_ksize_op.h +0 -19
  1703. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/geqrf_op.h +0 -14
  1704. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/glu_grad_op.h +0 -17
  1705. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/glu_op.h +0 -20
  1706. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/hamming_window_op.h +0 -20
  1707. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/index_fill.h +0 -18
  1708. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/instance_norm_v2_grad.h +0 -28
  1709. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/layer_norm_grad_grad_op.h +0 -17
  1710. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/log_normal_reverse.h +0 -15
  1711. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/logspace.h +0 -23
  1712. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/lstsq_op.h +0 -15
  1713. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/matrix_logarithm.h +0 -13
  1714. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/matrix_power_op.h +0 -16
  1715. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/max_pool_3d_grad_with_argmax_op.h +0 -26
  1716. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/maximum_grad_grad.h +0 -19
  1717. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/median_grad_op.h +0 -19
  1718. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/median_op.h +0 -17
  1719. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/minimum_grad_grad.h +0 -19
  1720. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/multi_margin_loss_grad_op.h +0 -24
  1721. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/multi_margin_loss_op.h +0 -19
  1722. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/mvlgamma_grad_op.h +0 -17
  1723. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/mvlgamma_op.h +0 -15
  1724. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/pdist_grad_op.h +0 -21
  1725. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/segment_mean_op.h +0 -18
  1726. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/segment_min_op.h +0 -19
  1727. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_addmm.h +0 -16
  1728. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_apply_adagrad_da.h +0 -38
  1729. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_apply_centered_rms_prop.h +0 -47
  1730. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_apply_momentum.h +0 -36
  1731. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_apply_proximal_gradient_descent.h +0 -29
  1732. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_matrix_transpose_op.h +0 -29
  1733. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_segment_mean_with_num_segments_op.h +0 -19
  1734. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_segment_sqrt_n_grad_op.h +0 -21
  1735. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_segment_sqrt_n_op.h +0 -18
  1736. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_segment_sqrt_n_with_num_segments_op.h +0 -20
  1737. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sparse_tensor_to_csr_sparse_matrix_op.h +0 -18
  1738. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/sspaddmm_op.h +0 -22
  1739. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/inc/triplet_margin_loss_op.h +0 -22
  1740. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/utils/axis_util.h +5 -1
  1741. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/utils/reduce_infer_util.h +1 -2
  1742. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/customize/op_proto/utils/transfer_shape_according_to_format.h +5 -1
  1743. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/drop_out_gen_mask_kernels.h +2 -2
  1744. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/gather_grad_kernels.h +1 -1
  1745. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/replay_buffer/replay_buffer_factory.h +2 -1
  1746. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_util.h +2 -0
  1747. mindspore/include/mindspore/ops/kernel/ascend/availability/silent_check/ascend_silent_check.h +13 -14
  1748. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/addbmm_aclnn_kernel.h +1 -1
  1749. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/addmm_aclnn_kernel.h +1 -1
  1750. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/addmv_aclnn_kernel.h +1 -1
  1751. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/baddbmm_aclnn_kernel.h +1 -1
  1752. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/batch_norm_ext_aclnn_kernel.h +1 -0
  1753. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/batch_norm_grad_ext_aclnn_kernel.h +2 -1
  1754. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/bincount_ext_aclnn_kernel.h +2 -2
  1755. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/chunk_aclnn_kernel.h +2 -2
  1756. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/contiguous_aclnn_kernel.h +40 -0
  1757. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/conv1d_ext_aclnn_kernel.h +2 -0
  1758. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/conv1d_padding_aclnn_kernel.h +2 -1
  1759. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/conv2d_ext_aclnn_kernel.h +1 -0
  1760. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/conv2d_padding_aclnn_kernel.h +3 -1
  1761. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/conv3d_ext_aclnn_kernel.h +4 -0
  1762. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/convolution_str_aclnn_kernel.h +1 -1
  1763. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/cross_entropy_loss_aclnn_kernel.h +48 -0
  1764. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/cross_entropy_loss_grad_aclnn_kernel.h +47 -0
  1765. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/custom_aclnn_kernel.h +5 -1
  1766. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/custom_aclnn_utils.h +2 -1
  1767. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/custom_v2_aclnn_kernel.h +83 -0
  1768. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/dense_aclnn_kernel.h +13 -6
  1769. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/dropout_ext_aclnn_kernel.h +3 -3
  1770. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/empty_aclnn_kernel.h +39 -0
  1771. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/empty_like_aclnn_kernel.h +39 -0
  1772. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/flash_attention_score_aclnn_kernel.h +1 -0
  1773. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/flash_attention_score_grad_aclnn_kernel.h +1 -0
  1774. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/gather_d_grad_v2_aclnn_kernel.h +1 -1
  1775. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/grid_sampler_2d_grad_aclnn_kernel.h +3 -3
  1776. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/grid_sampler_3d_grad_aclnn_kernel.h +3 -3
  1777. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/grouped_matmul_v2_aclnn_kernel.h +49 -0
  1778. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/grouped_matmul_v4_aclnn_kernel.h +6 -3
  1779. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/index_add_ext_aclnn_kernel.h +1 -1
  1780. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/index_fill_scalar_aclnn_kernel.h +1 -1
  1781. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/index_fill_tensor_aclnn_kernel.h +1 -1
  1782. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inner_inplace_index_put_aclnn_kernel.h +1 -0
  1783. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inner_moe_token_unpermute_aclnn_kernel.h +45 -0
  1784. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_bernoulli_scalar_aclnn_kernel.h +47 -0
  1785. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_bernoulli_tensor_aclnn_kernel.h +46 -0
  1786. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_clamp_scalar_aclnn_kernel.h +2 -0
  1787. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_divs_aclnn_kernel.h +41 -0
  1788. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_index_add_aclnn_kernel.h +1 -1
  1789. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_normal_aclnn_kernel.h +2 -2
  1790. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_scatter_add_aclnn_kernel.h +45 -0
  1791. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_silu_aclnn_kernel.h +42 -0
  1792. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_sub_scalar_aclnn_kernel.h +41 -0
  1793. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/inplace_uniform_aclnn_kernel.h +2 -2
  1794. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/isinf_aclnn_kernel.h +1 -1
  1795. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/linalg_vector_norm_aclnn_kernel.h +1 -1
  1796. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/masked_scatter_aclnn_kernel.h +45 -0
  1797. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/matmul_all_reduce_aclnn_kernel.h +2 -2
  1798. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/matmul_reduce_scatter_aclnn_kernel.h +4 -4
  1799. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/moe_distribute_combine_aclnn_kernel.h +56 -0
  1800. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/moe_distribute_dispatch_aclnn_kernel.h +55 -0
  1801. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/moe_init_routing_quant_v2_aclnn_kernel.h +50 -0
  1802. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/mse_loss_ext_aclnn_kernel.h +1 -1
  1803. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/mse_loss_grad_ext_aclnn_kernel.h +1 -1
  1804. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/multinomial_ext_aclnn_kernel.h +1 -1
  1805. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/narrow_aclnn_kernel.h +3 -3
  1806. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/new_empty_aclnn_kernel.h +39 -0
  1807. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/new_full_aclnn_kernel.h +41 -0
  1808. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/norm_aclnn_kernel.h +1 -1
  1809. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/prod_ext_aclnn_kernel.h +1 -1
  1810. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/quant_batch_matmul_all_reduce_aclnn_kernel.h +2 -2
  1811. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/rand_ext_aclnn_kernel.h +2 -2
  1812. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/randint_aclnn_kernel.h +4 -4
  1813. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/randn_aclnn_kernel.h +2 -2
  1814. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/randperm_ext_aclnn_kernel.h +2 -2
  1815. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/repeat_interleave_grad_aclnn_kernel.h +1 -1
  1816. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/ring_attention_update_aclnn_kernel.h +41 -0
  1817. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/split_with_size_aclnn_kernel.h +1 -1
  1818. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/unique2_aclnn_kernel.h +3 -0
  1819. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/unique_consecutive_aclnn_kernel.h +2 -0
  1820. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/unique_dim_aclnn_kernel.h +3 -0
  1821. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/broadcast_to_view.h +42 -0
  1822. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/chunk_view.h +42 -0
  1823. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/concat_view.h +1 -1
  1824. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/diagonal_view.h +42 -0
  1825. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/expand_dims_view.h +42 -0
  1826. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/flatten_view.h +42 -0
  1827. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/narrow_view.h +43 -0
  1828. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/reshape_view.h +2 -1
  1829. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/select_ext_view.h +42 -0
  1830. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/slice_ext_view.h +42 -0
  1831. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/split_tensor_view.h +42 -0
  1832. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/split_view.h +1 -1
  1833. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/split_with_size_view.h +42 -0
  1834. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/squeeze_view.h +42 -0
  1835. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/strided_slice_view.h +1 -1
  1836. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/transpose_view.h +1 -1
  1837. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/unstack_ext_view.h +42 -0
  1838. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/view.h +42 -0
  1839. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/view_utils.h +0 -1
  1840. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn_auto_gen/apply_rotary_pos_emb_aclnn_kernel.h +41 -0
  1841. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn_auto_gen/mla_aclnn_kernel.h +41 -0
  1842. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn_auto_gen/paged_attention_aclnn_kernel.h +41 -0
  1843. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn_kernel_mod.h +139 -23
  1844. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn_kernel_utils.h +3 -3
  1845. mindspore/include/mindspore/ops/kernel/ascend/pyboost/aclnn_utils.h +42 -17
  1846. mindspore/include/mindspore/ops/kernel/ascend/pyboost/atb_runner.h +124 -0
  1847. mindspore/include/mindspore/ops/kernel/ascend/pyboost/atb_runner_base.h +48 -0
  1848. mindspore/include/mindspore/ops/kernel/ascend/pyboost/atb_utils.h +63 -0
  1849. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/abs.h +1 -1
  1850. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/acos_ext.h +1 -1
  1851. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/acosh_ext.h +1 -1
  1852. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adamw.h +1 -1
  1853. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adaptive_avg_pool1d.h +1 -1
  1854. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adaptive_avg_pool2d_ext.h +1 -1
  1855. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adaptive_avg_pool2d_grad_ext.h +1 -1
  1856. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adaptive_avg_pool3d_ext.h +1 -1
  1857. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adaptive_avg_pool3d_grad_ext.h +1 -1
  1858. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adaptive_max_pool1d.h +1 -1
  1859. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/adaptive_max_pool2d.h +1 -1
  1860. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/add.h +1 -1
  1861. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/add_ext.h +1 -1
  1862. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/add_layer_norm_grad.h +1 -1
  1863. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/add_layernorm_v2.h +1 -1
  1864. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/add_rms_norm.h +1 -1
  1865. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/add_rmsnorm_quant_v2.h +1 -1
  1866. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/add_scalar.h +1 -1
  1867. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/addbmm.h +1 -1
  1868. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/addcdiv_ext.h +1 -1
  1869. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/addcmul_ext.h +1 -1
  1870. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/addmm.h +1 -1
  1871. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/addmv.h +1 -1
  1872. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/all_finite.h +1 -1
  1873. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/all_gather_matmul.h +1 -1
  1874. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/any.h +40 -0
  1875. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/any_ext.h +40 -0
  1876. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/apply_rotary_pos_emb.h +40 -0
  1877. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/arange.h +1 -1
  1878. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/argmax_ext.h +1 -1
  1879. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/argmax_with_value.h +1 -1
  1880. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/argmin_ext.h +1 -1
  1881. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/argmin_with_value.h +1 -1
  1882. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/argsort.h +1 -1
  1883. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/as_strided.h +1 -1
  1884. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/asin_ext.h +1 -1
  1885. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/asinh_ext.h +1 -1
  1886. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/atan2_ext.h +1 -1
  1887. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/atan_ext.h +1 -1
  1888. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/atanh.h +1 -1
  1889. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/avg_pool1d.h +1 -1
  1890. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/avg_pool2d.h +1 -1
  1891. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/avg_pool2d_grad.h +1 -1
  1892. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/avg_pool3d_ext.h +1 -1
  1893. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/avg_pool3d_grad_ext.h +1 -1
  1894. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/baddbmm.h +1 -1
  1895. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_mat_mul.h +1 -1
  1896. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_norm_elemt.h +1 -1
  1897. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_norm_elemt_grad.h +1 -1
  1898. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_norm_ext.h +1 -1
  1899. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_norm_gather_stats_with_counts.h +1 -1
  1900. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_norm_grad_ext.h +1 -1
  1901. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_norm_reduce_grad.h +1 -1
  1902. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/batch_norm_stats.h +1 -1
  1903. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bernoulli_ext.h +1 -1
  1904. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/binary_cross_entropy.h +1 -1
  1905. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/binary_cross_entropy_grad.h +1 -1
  1906. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/binary_cross_entropy_with_logits.h +1 -1
  1907. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/binary_cross_entropy_with_logits_backward.h +1 -1
  1908. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bincount_ext.h +1 -1
  1909. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bitwise_and_scalar.h +1 -1
  1910. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bitwise_and_tensor.h +1 -1
  1911. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bitwise_not.h +1 -1
  1912. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bitwise_or_scalar.h +1 -1
  1913. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bitwise_or_tensor.h +1 -1
  1914. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bitwise_xor_scalar.h +1 -1
  1915. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bitwise_xor_tensor.h +1 -1
  1916. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/bmm_ext.h +1 -1
  1917. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/broadcast_to.h +1 -1
  1918. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/broadcast_to_view.h +40 -0
  1919. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cast.h +1 -1
  1920. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/ceil.h +1 -1
  1921. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cell_backward_hook.h +40 -0
  1922. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/chunk.h +1 -1
  1923. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/chunk_view.h +40 -0
  1924. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/clamp_scalar.h +1 -1
  1925. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/clamp_tensor.h +1 -1
  1926. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/clone.h +1 -1
  1927. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/col2im_ext.h +1 -1
  1928. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/col2im_grad.h +1 -1
  1929. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/concat.h +1 -1
  1930. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/constant_pad_nd.h +1 -1
  1931. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/contiguous.h +1 -1
  1932. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/conv1d_ext.h +1 -1
  1933. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/conv1d_padding.h +1 -1
  1934. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/conv2d_ext.h +1 -1
  1935. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/conv2d_padding.h +1 -1
  1936. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/conv3d_ext.h +1 -1
  1937. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/conv3d_padding.h +1 -1
  1938. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/conv_transpose2d.h +1 -1
  1939. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/convolution.h +1 -1
  1940. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/convolution_grad.h +1 -1
  1941. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/convolution_str.h +1 -1
  1942. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/convolution_str_grad.h +1 -1
  1943. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/copy.h +1 -1
  1944. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cos.h +1 -1
  1945. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cosh.h +1 -1
  1946. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/count_nonzero.h +1 -1
  1947. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cross.h +1 -1
  1948. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cross_entropy_loss.h +40 -0
  1949. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cross_entropy_loss_grad.h +40 -0
  1950. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cummax.h +1 -1
  1951. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cummin_ext.h +1 -1
  1952. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/cumsum_ext.h +1 -1
  1953. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/custom_ext.h +1 -1
  1954. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/dense.h +1 -1
  1955. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/diag_ext.h +1 -1
  1956. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/diagonal_view.h +40 -0
  1957. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/div.h +1 -1
  1958. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/divmod.h +1 -1
  1959. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/divmods.h +1 -1
  1960. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/divs.h +1 -1
  1961. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/dot.h +1 -1
  1962. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/dropout_do_mask_ext.h +1 -1
  1963. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/dropout_ext.h +1 -1
  1964. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/dropout_gen_mask_ext.h +1 -1
  1965. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/dropout_grad_ext.h +1 -1
  1966. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/dynamic_quant_ext.h +1 -1
  1967. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/einsum_ext.h +40 -0
  1968. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/elu.h +1 -1
  1969. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/elu_ext.h +1 -1
  1970. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/elu_grad_ext.h +1 -1
  1971. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/embedding.h +1 -1
  1972. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/embedding_dense_backward.h +1 -1
  1973. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/empty.h +40 -0
  1974. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/empty_like.h +40 -0
  1975. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/equal.h +1 -1
  1976. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/equal_ext.h +1 -1
  1977. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/erf.h +1 -1
  1978. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/erfc.h +1 -1
  1979. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/erfinv.h +1 -1
  1980. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/exp.h +1 -1
  1981. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/exp2.h +1 -1
  1982. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/expand_as.h +1 -1
  1983. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/expand_dims.h +1 -1
  1984. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/expand_dims_view.h +40 -0
  1985. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/expm1.h +1 -1
  1986. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/eye.h +1 -1
  1987. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/ffn_ext.h +1 -1
  1988. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/fill_scalar.h +1 -1
  1989. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/fill_tensor.h +1 -1
  1990. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/flash_attention_score.h +1 -1
  1991. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/flash_attention_score_grad.h +1 -1
  1992. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/flatten_ext.h +1 -1
  1993. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/floor.h +1 -1
  1994. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/floor_div.h +1 -1
  1995. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/floor_div_scalar.h +1 -1
  1996. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/fmod_scalar.h +1 -1
  1997. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/fmod_tensor.h +1 -1
  1998. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/frac.h +1 -1
  1999. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/full_like.h +1 -1
  2000. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/func_dropout_ext.h +40 -0
  2001. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/func_max_pool2d.h +40 -0
  2002. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/fused_infer_attention_score.h +1 -1
  2003. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gather_d.h +1 -1
  2004. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gather_d_grad_v2.h +1 -1
  2005. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gcd.h +1 -1
  2006. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gelu.h +1 -1
  2007. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gelu_ext.h +1 -1
  2008. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gelu_grad.h +1 -1
  2009. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gelu_grad_ext.h +1 -1
  2010. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/generator.h +1 -1
  2011. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/glu.h +1 -1
  2012. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/glu_grad.h +1 -1
  2013. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gmm.h +40 -0
  2014. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gmm_backward.h +1 -1
  2015. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gmm_backward_fusion.h +40 -0
  2016. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gmm_v2.h +40 -0
  2017. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gmm_v2_backward.h +1 -1
  2018. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/gmm_v2_backward_fusion.h +40 -0
  2019. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/greater.h +1 -1
  2020. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/greater_equal.h +1 -1
  2021. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/greater_equal_scalar.h +1 -1
  2022. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/grid_sampler_2d.h +1 -1
  2023. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/grid_sampler_2d_grad.h +1 -1
  2024. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/grid_sampler_3d.h +1 -1
  2025. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/grid_sampler_3d_grad.h +1 -1
  2026. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/group_norm.h +1 -1
  2027. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/group_norm_grad.h +1 -1
  2028. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/grouped_matmul.h +1 -1
  2029. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/grouped_matmul_v2.h +1 -1
  2030. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/grouped_matmul_v4.h +1 -1
  2031. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hardtanh.h +1 -1
  2032. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hardtanh_grad.h +1 -1
  2033. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/histc_ext.h +1 -1
  2034. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hshrink.h +1 -1
  2035. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hshrink_grad.h +1 -1
  2036. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hsigmoid.h +1 -1
  2037. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hsigmoid_grad.h +1 -1
  2038. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hswish.h +1 -1
  2039. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/hswish_grad.h +1 -1
  2040. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/identity.h +1 -1
  2041. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/im2col_ext.h +1 -1
  2042. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/incre_flash_attention.h +1 -1
  2043. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/index.h +1 -1
  2044. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/index_add_ext.h +1 -1
  2045. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/index_fill_scalar.h +1 -1
  2046. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/index_fill_tensor.h +1 -1
  2047. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/index_select.h +1 -1
  2048. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inner_index.h +1 -1
  2049. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inner_inplace_index_put.h +1 -1
  2050. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inner_moe_token_unpermute.h +40 -0
  2051. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inner_non_zero.h +1 -1
  2052. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_add_ext.h +1 -1
  2053. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_addmm.h +1 -1
  2054. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_adds_ext.h +1 -1
  2055. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_bernoulli_scalar.h +40 -0
  2056. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_bernoulli_tensor.h +40 -0
  2057. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_clamp_scalar.h +1 -1
  2058. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_clamp_tensor.h +1 -1
  2059. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_copy.h +1 -1
  2060. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_div.h +1 -1
  2061. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_divmod.h +1 -1
  2062. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_divmods.h +1 -1
  2063. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_divs.h +1 -1
  2064. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_elu.h +1 -1
  2065. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_erfinv.h +1 -1
  2066. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_exp.h +1 -1
  2067. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_exponential.h +40 -0
  2068. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_fill_diagonal.h +1 -1
  2069. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_fill_scalar.h +1 -1
  2070. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_fill_tensor.h +1 -1
  2071. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_floor.h +1 -1
  2072. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_floor_divide.h +1 -1
  2073. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_floor_divides.h +1 -1
  2074. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_grouped_matmul_add.h +1 -1
  2075. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_hardtanh.h +1 -1
  2076. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_index_add.h +1 -1
  2077. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_index_put.h +1 -1
  2078. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_log.h +1 -1
  2079. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_masked_fill_scalar.h +1 -1
  2080. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_masked_fill_tensor.h +1 -1
  2081. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_matmul_add.h +40 -0
  2082. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_mul.h +1 -1
  2083. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_muls.h +1 -1
  2084. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_normal.h +1 -1
  2085. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_put.h +1 -1
  2086. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_random.h +1 -1
  2087. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_relu.h +1 -1
  2088. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_remainder_tensor_scalar.h +40 -0
  2089. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_remainder_tensor_tensor.h +40 -0
  2090. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_scatter_add.h +1 -1
  2091. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_scatter_src.h +1 -1
  2092. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_scatter_src_reduce.h +1 -1
  2093. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_scatter_value.h +1 -1
  2094. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_scatter_value_reduce.h +1 -1
  2095. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_silu.h +40 -0
  2096. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_stop_gradient.h +1 -1
  2097. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_sub_ext.h +1 -1
  2098. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_sub_scalar.h +1 -1
  2099. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_tanh.h +1 -1
  2100. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_threshold.h +1 -1
  2101. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_uniform.h +1 -1
  2102. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/inplace_zero.h +1 -1
  2103. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/isclose.h +1 -1
  2104. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/isfinite.h +1 -1
  2105. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/isinf.h +1 -1
  2106. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/isneginf.h +1 -1
  2107. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/kl_div.h +1 -1
  2108. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/kl_div_grad.h +1 -1
  2109. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/kthvalue.h +1 -1
  2110. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/kv_cache_scatter_update.h +1 -1
  2111. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/l1_loss_backward_ext.h +1 -1
  2112. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/l1_loss_ext.h +1 -1
  2113. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/layer_norm_ext.h +1 -1
  2114. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/layer_norm_grad_ext.h +1 -1
  2115. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/leaky_relu_ext.h +1 -1
  2116. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/leaky_relu_grad_ext.h +1 -1
  2117. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/lerp.h +1 -1
  2118. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/lerp_scalar.h +1 -1
  2119. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/less.h +1 -1
  2120. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/less_equal.h +1 -1
  2121. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/lin_space_ext.h +1 -1
  2122. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/linalg_qr.h +1 -1
  2123. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/linalg_vector_norm.h +1 -1
  2124. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/log.h +1 -1
  2125. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/log10.h +1 -1
  2126. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/log1p.h +1 -1
  2127. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/log2.h +1 -1
  2128. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/log_softmax.h +1 -1
  2129. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/log_softmax_ext.h +1 -1
  2130. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/log_softmax_grad.h +1 -1
  2131. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logaddexp.h +1 -1
  2132. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logaddexp2.h +1 -1
  2133. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logical_and.h +1 -1
  2134. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logical_not.h +1 -1
  2135. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logical_or.h +1 -1
  2136. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logical_xor.h +1 -1
  2137. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logsigmoid.h +1 -1
  2138. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logsigmoid_grad.h +1 -1
  2139. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/logsumexp.h +1 -1
  2140. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/masked_fill.h +1 -1
  2141. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/masked_scatter.h +40 -0
  2142. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/masked_select.h +1 -1
  2143. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/masked_select_grad.h +1 -1
  2144. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/matmul.h +1 -1
  2145. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/matmul_allreduce_add_rmsnorm.h +1 -1
  2146. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/matmul_ext.h +1 -1
  2147. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/matmul_reduce_scatter.h +1 -1
  2148. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/matrix_inverse_ext.h +1 -1
  2149. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/max.h +1 -1
  2150. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/max_dim.h +1 -1
  2151. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/max_pool_grad_with_indices.h +1 -1
  2152. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/max_pool_grad_with_mask.h +1 -1
  2153. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/max_pool_with_indices.h +1 -1
  2154. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/max_pool_with_mask.h +1 -1
  2155. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/max_unpool2d_ext.h +1 -1
  2156. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/maximum.h +1 -1
  2157. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mean_ext.h +1 -1
  2158. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/median_dim.h +1 -1
  2159. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/median_ext.h +1 -1
  2160. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/meshgrid.h +1 -1
  2161. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/min.h +1 -1
  2162. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/min_dim.h +1 -1
  2163. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/minimum.h +1 -1
  2164. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mish_ext.h +1 -1
  2165. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mish_grad_ext.h +1 -1
  2166. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mla.h +40 -0
  2167. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mm_ext.h +1 -1
  2168. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_compute_expert_tokens.h +1 -1
  2169. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_distribute_combine.h +40 -0
  2170. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_distribute_dispatch.h +40 -0
  2171. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_finalize_routing.h +1 -1
  2172. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_gating_top_k_softmax.h +1 -1
  2173. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_init_routing.h +1 -1
  2174. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_init_routing_quant_v2.h +40 -0
  2175. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_init_routing_v2.h +1 -1
  2176. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_token_permute.h +1 -1
  2177. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_token_permute_grad.h +1 -1
  2178. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_token_unpermute.h +1 -1
  2179. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/moe_token_unpermute_grad.h +1 -1
  2180. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mse_loss_ext.h +1 -1
  2181. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mse_loss_grad_ext.h +1 -1
  2182. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mul.h +1 -1
  2183. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/muls.h +1 -1
  2184. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/multi_scale_deformable_attn.h +1 -1
  2185. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/multi_scale_deformable_attn_grad.h +1 -1
  2186. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/multinomial_ext.h +1 -1
  2187. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/mv.h +1 -1
  2188. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/nan_to_num.h +1 -1
  2189. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/nansum.h +1 -1
  2190. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/narrow.h +1 -1
  2191. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/narrow_view.h +40 -0
  2192. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/ne_scalar.h +1 -1
  2193. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/neg.h +1 -1
  2194. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/new_empty.h +40 -0
  2195. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/new_full.h +40 -0
  2196. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/new_ones.h +1 -1
  2197. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/new_zeros.h +1 -1
  2198. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/nllloss.h +1 -1
  2199. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/nllloss_2d.h +1 -1
  2200. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/nllloss_2d_grad.h +1 -1
  2201. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/nllloss_grad.h +1 -1
  2202. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/non_zero.h +1 -1
  2203. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/non_zero_ext.h +1 -1
  2204. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/norm.h +1 -1
  2205. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/normal_float_float.h +1 -1
  2206. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/normal_float_tensor.h +1 -1
  2207. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/normal_tensor_float.h +1 -1
  2208. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/normal_tensor_tensor.h +1 -1
  2209. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/not_equal.h +1 -1
  2210. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/one_hot_ext.h +1 -1
  2211. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/ones.h +1 -1
  2212. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/ones_like_ext.h +1 -1
  2213. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/outer.h +1 -1
  2214. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/paged_attention.h +40 -0
  2215. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/pixel_shuffle.h +1 -1
  2216. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/polar.h +1 -1
  2217. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/pow.h +1 -1
  2218. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/pow_scalar_tensor.h +1 -1
  2219. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/pow_tensor_scalar.h +1 -1
  2220. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/prelu.h +1 -1
  2221. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/prelu_grad.h +1 -1
  2222. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/prod_ext.h +1 -1
  2223. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/prompt_flash_attention.h +1 -1
  2224. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/quant_batch_matmul.h +1 -1
  2225. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/quant_matmul.h +40 -0
  2226. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/quant_v2.h +1 -1
  2227. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/rand_ext.h +1 -1
  2228. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/rand_like_ext.h +1 -1
  2229. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/randint.h +1 -1
  2230. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/randint_like.h +1 -1
  2231. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/randn.h +1 -1
  2232. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/randn_like.h +1 -1
  2233. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/randperm_ext.h +1 -1
  2234. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reciprocal.h +1 -1
  2235. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reduce_all.h +1 -1
  2236. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reduce_any.h +1 -1
  2237. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reduce_max.h +1 -1
  2238. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reduce_min.h +1 -1
  2239. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reflection_pad_1d.h +1 -1
  2240. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reflection_pad_1d_grad.h +1 -1
  2241. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reflection_pad_2d.h +1 -1
  2242. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reflection_pad_2d_grad.h +1 -1
  2243. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reflection_pad_3d.h +1 -1
  2244. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reflection_pad_3d_grad.h +1 -1
  2245. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/relu.h +1 -1
  2246. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/relu_grad.h +1 -1
  2247. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/remainder_scalar_tensor.h +1 -1
  2248. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/remainder_tensor_scalar.h +1 -1
  2249. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/remainder_tensor_tensor.h +1 -1
  2250. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/repeat.h +1 -1
  2251. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/repeat_interleave_grad.h +1 -1
  2252. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/repeat_interleave_int.h +1 -1
  2253. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/repeat_interleave_tensor.h +1 -1
  2254. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/replication_pad_1d.h +1 -1
  2255. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/replication_pad_1d_grad.h +1 -1
  2256. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/replication_pad_2d.h +1 -1
  2257. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/replication_pad_2d_grad.h +1 -1
  2258. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/replication_pad_3d.h +1 -1
  2259. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/replication_pad_3d_grad.h +1 -1
  2260. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reshape.h +1 -1
  2261. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reshape_and_cache.h +40 -0
  2262. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/reverse_v2.h +1 -1
  2263. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/ring_attention_update.h +40 -0
  2264. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/rms_norm.h +1 -1
  2265. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/rms_norm_grad.h +1 -1
  2266. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/roll.h +1 -1
  2267. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/rotary_position_embedding.h +1 -1
  2268. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/rotary_position_embedding_grad.h +1 -1
  2269. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/round.h +1 -1
  2270. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/rsqrt.h +1 -1
  2271. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/scatter.h +1 -1
  2272. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/scatter_add_ext.h +1 -1
  2273. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/scatter_value.h +1 -1
  2274. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/searchsorted.h +1 -1
  2275. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/select.h +1 -1
  2276. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/select_ext_view.h +40 -0
  2277. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/select_v2.h +1 -1
  2278. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/selu_ext.h +1 -1
  2279. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/selu_grad.h +1 -1
  2280. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sigmoid.h +1 -1
  2281. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sigmoid_grad.h +1 -1
  2282. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sign.h +1 -1
  2283. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/silent_check_v2.h +1 -1
  2284. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/silent_check_v3.h +1 -1
  2285. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/silu.h +1 -1
  2286. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/silu_grad.h +1 -1
  2287. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sin.h +1 -1
  2288. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sinc.h +1 -1
  2289. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sinh.h +1 -1
  2290. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/slice.h +1 -1
  2291. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/slice_ext.h +1 -1
  2292. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/slice_ext_view.h +40 -0
  2293. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/smooth_l1_loss.h +1 -1
  2294. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/smooth_l1_loss_grad.h +1 -1
  2295. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/soft_margin_loss.h +1 -1
  2296. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/soft_margin_loss_grad.h +1 -1
  2297. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/softmax.h +1 -1
  2298. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/softmax_backward.h +1 -1
  2299. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/softplus_ext.h +1 -1
  2300. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/softplus_grad_ext.h +1 -1
  2301. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/softshrink.h +1 -1
  2302. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/softshrink_grad.h +1 -1
  2303. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sort_ext.h +1 -1
  2304. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/speed_fusion_attention.h +1 -1
  2305. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/speed_fusion_attention_grad.h +1 -1
  2306. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/split.h +1 -1
  2307. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/split_tensor.h +1 -1
  2308. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/split_tensor_view.h +40 -0
  2309. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/split_with_size.h +1 -1
  2310. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/split_with_size_view.h +40 -0
  2311. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sqrt.h +1 -1
  2312. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/square.h +1 -1
  2313. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/squeeze.h +1 -1
  2314. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/stack_ext.h +1 -1
  2315. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/std.h +1 -1
  2316. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/std_mean.h +1 -1
  2317. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sub.h +1 -1
  2318. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sub_ext.h +1 -1
  2319. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sub_scalar.h +1 -1
  2320. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/sum_ext.h +1 -1
  2321. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/swiglu.h +1 -1
  2322. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/swiglu_grad.h +1 -1
  2323. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/t_ext.h +1 -1
  2324. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/take.h +1 -1
  2325. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/tan.h +1 -1
  2326. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/tanh.h +1 -1
  2327. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/tanh_grad.h +1 -1
  2328. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/tensor_scatter_elements.h +1 -1
  2329. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/threshold.h +1 -1
  2330. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/threshold_grad.h +1 -1
  2331. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/tile.h +1 -1
  2332. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/topk_ext.h +1 -1
  2333. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/trace_ext.h +1 -1
  2334. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/transpose.h +1 -1
  2335. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/transpose_ext_view.h +40 -0
  2336. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/transpose_view.h +40 -0
  2337. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/triangular_solve.h +1 -1
  2338. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/tril_ext.h +1 -1
  2339. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/triu.h +1 -1
  2340. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/trunc.h +1 -1
  2341. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/type_as.h +1 -1
  2342. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/uniform_ext.h +1 -1
  2343. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/unique2.h +1 -1
  2344. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/unique_consecutive.h +1 -1
  2345. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/unique_dim.h +1 -1
  2346. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/unstack_ext_view.h +40 -0
  2347. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_bicubic2d.h +1 -1
  2348. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_bicubic2d_grad.h +1 -1
  2349. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_bilinear2d.h +1 -1
  2350. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_bilinear2d_grad.h +1 -1
  2351. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_linear1d.h +1 -1
  2352. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_linear1d_grad.h +1 -1
  2353. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_nearest1d.h +1 -1
  2354. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_nearest1d_grad.h +1 -1
  2355. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_nearest2d.h +1 -1
  2356. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_nearest2d_grad.h +1 -1
  2357. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_nearest3d.h +1 -1
  2358. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_nearest3d_grad.h +1 -1
  2359. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_trilinear3d.h +1 -1
  2360. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/upsample_trilinear3d_grad.h +1 -1
  2361. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/var.h +1 -1
  2362. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/var_mean.h +1 -1
  2363. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/view.h +1 -1
  2364. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/view_as.h +1 -1
  2365. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/weight_quant_batch_matmul.h +1 -1
  2366. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/xlogy.h +1 -1
  2367. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/xlogy_scalar_other.h +1 -1
  2368. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/xlogy_scalar_self.h +1 -1
  2369. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/zeros.h +1 -1
  2370. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/zeros_like_ext.h +1 -1
  2371. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/adamw.h +5 -5
  2372. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/adaptive_avg_pool1d.h +2 -3
  2373. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/adaptive_avg_pool3d_ext.h +2 -3
  2374. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/adaptive_max_pool1d.h +3 -2
  2375. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/adaptive_max_pool2d.h +3 -2
  2376. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/add.h +2 -2
  2377. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/add_layernorm_v2.h +3 -3
  2378. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/add_rms_norm.h +3 -3
  2379. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/add_rmsnorm_quant_v2.h +3 -3
  2380. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/add_scalar.h +2 -2
  2381. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/addbmm.h +3 -3
  2382. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/addmm.h +3 -3
  2383. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/addmv.h +3 -3
  2384. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/all_finite.h +2 -2
  2385. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/all_gather_matmul.h +3 -3
  2386. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/any.h +34 -0
  2387. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/any_ext.h +35 -0
  2388. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/arange.h +3 -3
  2389. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/argmax_ext.h +2 -2
  2390. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/argmax_with_value.h +4 -3
  2391. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/argmin_ext.h +2 -2
  2392. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/argmin_with_value.h +4 -3
  2393. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/argsort.h +3 -3
  2394. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/avg_pool1d.h +4 -4
  2395. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/avg_pool2d.h +5 -5
  2396. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/avg_pool2d_grad.h +5 -5
  2397. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/avg_pool3d_ext.h +6 -6
  2398. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/avg_pool3d_grad_ext.h +6 -6
  2399. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/baddbmm.h +3 -3
  2400. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/batch_mat_mul.h +3 -3
  2401. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/batch_norm_elemt.h +5 -7
  2402. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/batch_norm_ext.h +6 -5
  2403. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/batch_norm_gather_stats_with_counts.h +5 -5
  2404. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/batch_norm_grad_ext.h +6 -6
  2405. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/batch_norm_stats.h +3 -2
  2406. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/bernoulli_ext.h +2 -3
  2407. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/binary_cross_entropy.h +4 -5
  2408. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/binary_cross_entropy_grad.h +5 -6
  2409. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/binary_cross_entropy_with_logits.h +6 -6
  2410. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/binary_cross_entropy_with_logits_backward.h +4 -4
  2411. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/bincount_ext.h +3 -3
  2412. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/bmm_ext.h +2 -3
  2413. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/cell_backward_hook.h +27 -0
  2414. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/clone.h +1 -1
  2415. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/contiguous.h +1 -1
  2416. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/conv1d_ext.h +4 -5
  2417. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/conv1d_padding.h +5 -6
  2418. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/conv2d_ext.h +4 -5
  2419. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/conv2d_padding.h +5 -6
  2420. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/conv3d_ext.h +4 -5
  2421. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/conv3d_padding.h +5 -6
  2422. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/conv_transpose2d.h +6 -4
  2423. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/convolution.h +6 -6
  2424. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/convolution_grad.h +3 -3
  2425. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/convolution_str.h +6 -7
  2426. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/copy.h +1 -1
  2427. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/count_nonzero.h +2 -3
  2428. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/cross.h +2 -2
  2429. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/cross_entropy_loss.h +37 -0
  2430. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/cross_entropy_loss_grad.h +38 -0
  2431. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/cummax.h +3 -3
  2432. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/cummin_ext.h +3 -3
  2433. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/cumsum_ext.h +2 -2
  2434. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/custom_ext.h +2 -2
  2435. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/custom_kernel.h +79 -14
  2436. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/custom_launch_aclnn.h +1 -1
  2437. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/dense.h +2 -2
  2438. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/diag_ext.h +2 -2
  2439. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/divmod.h +2 -3
  2440. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/divmods.h +2 -2
  2441. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/divs.h +2 -2
  2442. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/dropout_do_mask_ext.h +2 -2
  2443. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/dropout_ext.h +2 -3
  2444. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/dropout_gen_mask_ext.h +3 -3
  2445. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/dropout_grad_ext.h +2 -2
  2446. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/einsum_ext.h +36 -0
  2447. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/elu_ext.h +2 -2
  2448. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/elu_grad_ext.h +3 -3
  2449. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/embedding.h +4 -5
  2450. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/embedding_dense_backward.h +5 -3
  2451. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/empty.h +35 -0
  2452. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/empty_like.h +36 -0
  2453. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/eye.h +2 -2
  2454. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/ffn_ext.h +8 -8
  2455. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/fill_scalar.h +2 -2
  2456. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/fill_tensor.h +2 -3
  2457. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/flash_attention_score.h +4 -4
  2458. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/flash_attention_score_grad.h +6 -6
  2459. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/flatten_ext.h +1 -1
  2460. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/floor_div.h +2 -2
  2461. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/floor_div_scalar.h +2 -2
  2462. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/full_like.h +2 -2
  2463. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/func_dropout_ext.h +38 -0
  2464. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/func_max_pool2d.h +38 -0
  2465. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/fused_infer_attention_score.h +15 -18
  2466. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gather_d_grad_v2.h +2 -3
  2467. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gelu_grad.h +2 -2
  2468. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gelu_grad_ext.h +2 -2
  2469. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gmm.h +38 -0
  2470. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gmm_backward.h +1 -1
  2471. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gmm_backward_fusion.h +37 -0
  2472. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gmm_v2.h +38 -0
  2473. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gmm_v2_backward.h +1 -1
  2474. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/gmm_v2_backward_fusion.h +36 -0
  2475. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/grid_sampler_2d_grad.h +3 -3
  2476. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/grid_sampler_3d_grad.h +3 -3
  2477. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/group_norm.h +3 -3
  2478. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/group_norm_grad.h +3 -3
  2479. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/grouped_matmul.h +1 -1
  2480. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/grouped_matmul_v4.h +1 -1
  2481. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/hshrink.h +2 -2
  2482. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/hshrink_grad.h +2 -3
  2483. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/identity.h +1 -1
  2484. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/incre_flash_attention.h +11 -11
  2485. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/index.h +2 -2
  2486. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/index_add_ext.h +3 -3
  2487. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/index_fill_scalar.h +3 -3
  2488. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/index_fill_tensor.h +3 -3
  2489. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inner_index.h +2 -2
  2490. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inner_inplace_index_put.h +4 -5
  2491. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inner_moe_token_unpermute.h +39 -0
  2492. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inner_non_zero.h +1 -2
  2493. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_add_ext.h +2 -3
  2494. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_addmm.h +3 -4
  2495. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_adds_ext.h +2 -3
  2496. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_bernoulli_scalar.h +35 -0
  2497. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_bernoulli_tensor.h +35 -0
  2498. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_clamp_scalar.h +3 -4
  2499. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_clamp_tensor.h +3 -4
  2500. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_copy.h +2 -3
  2501. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_div.h +2 -2
  2502. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_divmod.h +3 -3
  2503. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_divmods.h +3 -3
  2504. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_divs.h +2 -2
  2505. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_elu.h +2 -2
  2506. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_erfinv.h +1 -2
  2507. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_exp.h +1 -1
  2508. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_exponential.h +36 -0
  2509. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_fill_diagonal.h +2 -3
  2510. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_fill_scalar.h +2 -2
  2511. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_fill_tensor.h +2 -2
  2512. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_floor.h +1 -2
  2513. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_floor_divide.h +2 -3
  2514. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_floor_divides.h +2 -2
  2515. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_grouped_matmul_add.h +3 -3
  2516. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_hardtanh.h +2 -3
  2517. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_index_add.h +3 -4
  2518. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_index_put.h +3 -4
  2519. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_log.h +1 -1
  2520. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_masked_fill_scalar.h +2 -3
  2521. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_masked_fill_tensor.h +2 -3
  2522. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_matmul_add.h +34 -0
  2523. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_mul.h +2 -2
  2524. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_muls.h +2 -2
  2525. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_normal.h +3 -3
  2526. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_put.h +3 -3
  2527. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_random.h +3 -4
  2528. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_relu.h +1 -2
  2529. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_remainder_tensor_scalar.h +34 -0
  2530. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_remainder_tensor_tensor.h +35 -0
  2531. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_scatter_add.h +3 -4
  2532. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_scatter_src.h +3 -4
  2533. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_scatter_src_reduce.h +4 -5
  2534. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_scatter_value.h +3 -3
  2535. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_scatter_value_reduce.h +4 -5
  2536. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_silu.h +35 -0
  2537. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_stop_gradient.h +1 -1
  2538. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_sub_ext.h +2 -3
  2539. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_sub_scalar.h +2 -3
  2540. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_tanh.h +1 -2
  2541. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_threshold.h +2 -3
  2542. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_uniform.h +3 -4
  2543. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/inplace_zero.h +1 -2
  2544. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/isclose.h +3 -3
  2545. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/isinf.h +1 -1
  2546. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/kl_div.h +3 -3
  2547. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/kl_div_grad.h +3 -6
  2548. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/kv_cache_scatter_update.h +3 -5
  2549. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/l1_loss_backward_ext.h +3 -5
  2550. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/l1_loss_ext.h +2 -2
  2551. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/layer_norm_ext.h +3 -3
  2552. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/layer_norm_grad_ext.h +4 -4
  2553. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/lerp.h +2 -2
  2554. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/lerp_scalar.h +2 -2
  2555. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/lin_space_ext.h +3 -3
  2556. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/linalg_qr.h +1 -2
  2557. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/linalg_vector_norm.h +1 -1
  2558. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/log_softmax_ext.h +3 -4
  2559. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/log_softmax_grad.h +2 -3
  2560. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/masked_fill.h +2 -2
  2561. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/masked_scatter.h +35 -0
  2562. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/masked_select.h +2 -2
  2563. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/masked_select_grad.h +2 -4
  2564. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/matmul.h +3 -3
  2565. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/matmul_allreduce_add_rmsnorm.h +3 -3
  2566. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/matmul_ext.h +2 -2
  2567. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/matmul_reduce_scatter.h +5 -4
  2568. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/max_pool_grad_with_indices.h +6 -7
  2569. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/max_pool_grad_with_mask.h +6 -6
  2570. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/max_pool_with_indices.h +5 -5
  2571. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/max_pool_with_mask.h +4 -5
  2572. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/max_unpool2d_ext.h +6 -6
  2573. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/mean_ext.h +3 -3
  2574. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/meshgrid.h +4 -3
  2575. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/mm_ext.h +2 -2
  2576. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/moe_distribute_combine.h +45 -0
  2577. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/moe_distribute_dispatch.h +41 -0
  2578. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/moe_token_permute.h +2 -2
  2579. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/moe_token_unpermute.h +4 -6
  2580. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/moe_token_unpermute_grad.h +3 -4
  2581. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/move_to.h +2 -2
  2582. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/mse_loss_ext.h +2 -2
  2583. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/mse_loss_grad_ext.h +3 -4
  2584. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/muls.h +2 -2
  2585. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/multi_scale_deformable_attn.h +5 -3
  2586. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/multi_scale_deformable_attn_grad.h +4 -6
  2587. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/multinomial_ext.h +3 -4
  2588. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/mv.h +2 -2
  2589. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/nan_to_num.h +3 -4
  2590. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/nansum.h +3 -3
  2591. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/ne_scalar.h +2 -2
  2592. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/new_empty.h +36 -0
  2593. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/new_full.h +36 -0
  2594. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/new_ones.h +2 -2
  2595. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/new_zeros.h +1 -1
  2596. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/nllloss.h +3 -3
  2597. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/nllloss_2d.h +3 -3
  2598. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/nllloss_2d_grad.h +4 -4
  2599. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/nllloss_grad.h +4 -6
  2600. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/non_zero.h +1 -1
  2601. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/non_zero_ext.h +2 -2
  2602. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/norm.h +1 -1
  2603. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/normal_float_float.h +3 -3
  2604. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/normal_float_tensor.h +3 -3
  2605. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/normal_tensor_float.h +3 -3
  2606. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/normal_tensor_tensor.h +3 -4
  2607. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/one_hot_ext.h +3 -3
  2608. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/ones.h +2 -2
  2609. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/ones_like_ext.h +2 -2
  2610. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/outer.h +2 -2
  2611. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/pixel_shuffle.h +2 -2
  2612. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/pow_scalar_tensor.h +2 -2
  2613. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/pow_tensor_scalar.h +2 -3
  2614. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/prod_ext.h +3 -3
  2615. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/prompt_flash_attention.h +7 -7
  2616. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/quant_batch_matmul.h +7 -7
  2617. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/quant_matmul.h +41 -0
  2618. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/quant_v2.h +3 -3
  2619. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/rand_ext.h +3 -3
  2620. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/rand_like_ext.h +3 -3
  2621. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/randint.h +3 -4
  2622. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/randint_like.h +3 -4
  2623. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/randn.h +3 -3
  2624. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/randn_like.h +3 -3
  2625. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/randperm_ext.h +3 -3
  2626. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/reduce_all.h +2 -2
  2627. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/relu_grad.h +2 -2
  2628. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/repeat_interleave_grad.h +3 -3
  2629. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/repeat_interleave_int.h +3 -4
  2630. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/repeat_interleave_tensor.h +4 -5
  2631. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/reshape.h +4 -2
  2632. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/ring_attention_update.h +38 -0
  2633. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/rms_norm.h +4 -4
  2634. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/rotary_position_embedding_grad.h +3 -3
  2635. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/round.h +2 -2
  2636. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/scatter_add_ext.h +3 -3
  2637. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/searchsorted.h +3 -4
  2638. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/sigmoid_grad.h +2 -2
  2639. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/silent_check_v2.h +5 -5
  2640. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/silent_check_v3.h +6 -4
  2641. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/smooth_l1_loss.h +3 -4
  2642. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/smooth_l1_loss_grad.h +4 -5
  2643. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/soft_margin_loss.h +2 -3
  2644. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/soft_margin_loss_grad.h +3 -4
  2645. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/softmax.h +2 -2
  2646. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/softshrink.h +2 -2
  2647. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/softshrink_grad.h +2 -3
  2648. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/sort_ext.h +5 -5
  2649. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/speed_fusion_attention.h +4 -4
  2650. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/speed_fusion_attention_grad.h +11 -12
  2651. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/square.h +1 -1
  2652. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/std.h +3 -3
  2653. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/std_mean.h +1 -1
  2654. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/sub.h +2 -2
  2655. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/sub_scalar.h +2 -2
  2656. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/sum_ext.h +3 -3
  2657. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/t_ext.h +1 -1
  2658. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/take.h +2 -2
  2659. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/tanh_grad.h +2 -2
  2660. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/threshold.h +2 -2
  2661. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/threshold_grad.h +2 -2
  2662. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/tile.h +1 -1
  2663. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/type_as.h +2 -2
  2664. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/uniform_ext.h +3 -3
  2665. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/unique2.h +2 -2
  2666. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/unique_consecutive.h +2 -2
  2667. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/unique_dim.h +2 -2
  2668. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/unstack_ext_view.h +38 -0
  2669. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_bicubic2d.h +4 -5
  2670. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_bicubic2d_grad.h +5 -6
  2671. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_bilinear2d.h +4 -5
  2672. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_bilinear2d_grad.h +6 -6
  2673. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_linear1d.h +4 -5
  2674. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_linear1d_grad.h +5 -6
  2675. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_nearest1d.h +3 -4
  2676. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_nearest1d_grad.h +4 -5
  2677. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_nearest2d.h +3 -4
  2678. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_nearest2d_grad.h +4 -5
  2679. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_nearest3d.h +3 -4
  2680. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_nearest3d_grad.h +4 -5
  2681. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_trilinear3d.h +4 -5
  2682. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/upsample_trilinear3d_grad.h +6 -6
  2683. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/var.h +3 -3
  2684. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/var_mean.h +1 -1
  2685. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/view_as.h +2 -2
  2686. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/weight_quant_batch_matmul.h +5 -5
  2687. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/zeros.h +2 -2
  2688. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/zeros_like_ext.h +2 -3
  2689. mindspore/include/mindspore/ops/kernel/ascend/pyboost/internal/auto_generate/apply_rotary_pos_emb.h +40 -0
  2690. mindspore/include/mindspore/ops/kernel/ascend/pyboost/internal/auto_generate/flash_attention_score.h +40 -0
  2691. mindspore/include/mindspore/ops/kernel/ascend/pyboost/internal/auto_generate/mla.h +40 -0
  2692. mindspore/include/mindspore/ops/kernel/ascend/pyboost/internal/auto_generate/paged_attention.h +40 -0
  2693. mindspore/include/mindspore/ops/kernel/ascend/pyboost/internal/auto_generate/reshape_and_cache.h +40 -0
  2694. mindspore/include/mindspore/ops/kernel/ascend/pyboost/internal/functions/functions.h +35 -0
  2695. mindspore/include/mindspore/ops/kernel/cpu/empty_cpu_kernel.h +55 -0
  2696. mindspore/include/mindspore/ops/kernel/cpu/empty_like_cpu_kernel.h +55 -0
  2697. mindspore/include/mindspore/ops/kernel/cpu/grid_sampler_2d_grad_cpu_kernel.h +3 -15
  2698. mindspore/include/mindspore/ops/kernel/cpu/map_tensor/map_tensor_get_data_cpu_kernel.h +1 -1
  2699. mindspore/include/mindspore/ops/kernel/cpu/map_tensor/map_tensor_get_grad_cpu_kernel.h +1 -1
  2700. mindspore/include/mindspore/ops/kernel/cpu/masked_fill_cpu_kernel.h +1 -0
  2701. mindspore/include/mindspore/ops/kernel/cpu/multi_margin_loss_cpu_kernel.h +6 -6
  2702. mindspore/include/mindspore/ops/kernel/cpu/new_empty_cpu_kernel.h +55 -0
  2703. mindspore/include/mindspore/ops/kernel/cpu/nnacl/intrinsics/ms_simd_avx512_instructions.h +0 -3
  2704. mindspore/include/mindspore/ops/kernel/cpu/nnacl/intrinsics/ms_simd_avx_instructions.h +0 -3
  2705. mindspore/include/mindspore/ops/kernel/cpu/nnacl/intrinsics/ms_simd_sse_instructions.h +0 -3
  2706. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/abs.h +1 -1
  2707. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/acos_ext.h +38 -0
  2708. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/adaptive_avg_pool1d.h +1 -1
  2709. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/adaptive_avg_pool2d_grad_ext.h +1 -1
  2710. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/adaptive_avg_pool3d_grad_ext.h +1 -1
  2711. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/adaptive_max_pool1d.h +1 -1
  2712. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/adaptive_max_pool2d.h +1 -1
  2713. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/add.h +1 -1
  2714. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/add_ext.h +1 -1
  2715. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/add_layer_norm_grad.h +1 -1
  2716. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/add_rmsnorm_quant_v2.h +1 -1
  2717. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/add_scalar.h +1 -1
  2718. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/addcdiv_ext.h +1 -1
  2719. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/addcmul_ext.h +1 -1
  2720. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/any.h +38 -0
  2721. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/any_ext.h +38 -0
  2722. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/apply_rotary_pos_emb.h +38 -0
  2723. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/argmax_with_value.h +1 -1
  2724. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/argmin_with_value.h +1 -1
  2725. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/argsort.h +1 -1
  2726. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/as_strided.h +1 -1
  2727. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/atan_ext.h +38 -0
  2728. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/atanh.h +1 -1
  2729. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/avg_pool1d.h +1 -1
  2730. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/avg_pool2d.h +1 -1
  2731. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/avg_pool2d_grad.h +1 -1
  2732. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/avg_pool3d_ext.h +1 -1
  2733. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/avg_pool3d_grad_ext.h +1 -1
  2734. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/baddbmm.h +1 -1
  2735. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/batch_mat_mul.h +1 -1
  2736. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/batch_norm_elemt.h +1 -1
  2737. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/batch_norm_elemt_grad.h +1 -1
  2738. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/batch_norm_gather_stats_with_counts.h +1 -1
  2739. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/batch_norm_reduce_grad.h +1 -1
  2740. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/batch_norm_stats.h +1 -1
  2741. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bernoulli_ext.h +1 -1
  2742. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/binary_cross_entropy.h +1 -1
  2743. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/binary_cross_entropy_grad.h +1 -1
  2744. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/binary_cross_entropy_with_logits.h +1 -1
  2745. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/binary_cross_entropy_with_logits_backward.h +1 -1
  2746. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bitwise_and_scalar.h +1 -1
  2747. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bitwise_and_tensor.h +1 -1
  2748. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bitwise_not.h +1 -1
  2749. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bitwise_or_scalar.h +1 -1
  2750. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bitwise_or_tensor.h +1 -1
  2751. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bitwise_xor_scalar.h +1 -1
  2752. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bitwise_xor_tensor.h +1 -1
  2753. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/bmm_ext.h +1 -1
  2754. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/broadcast_to.h +1 -1
  2755. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/broadcast_to_view.h +38 -0
  2756. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cast.h +1 -1
  2757. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/ceil.h +1 -1
  2758. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cell_backward_hook.h +38 -0
  2759. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/chunk.h +1 -1
  2760. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/chunk_view.h +38 -0
  2761. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/clamp_scalar.h +1 -1
  2762. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/clamp_tensor.h +1 -1
  2763. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/clone.h +1 -1
  2764. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/col2im_ext.h +1 -1
  2765. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/col2im_grad.h +1 -1
  2766. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/concat.h +1 -1
  2767. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/constant_pad_nd.h +1 -1
  2768. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/contiguous.h +1 -1
  2769. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/conv1d_padding.h +1 -1
  2770. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/conv2d_ext.h +1 -1
  2771. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/conv2d_padding.h +1 -1
  2772. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/conv3d_padding.h +1 -1
  2773. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/conv_transpose2d.h +1 -1
  2774. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/convolution.h +1 -1
  2775. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/convolution_grad.h +1 -1
  2776. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/convolution_str.h +1 -1
  2777. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/convolution_str_grad.h +1 -1
  2778. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/copy.h +1 -1
  2779. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cos.h +1 -1
  2780. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cosh.h +1 -1
  2781. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/count_nonzero.h +1 -1
  2782. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cross.h +1 -1
  2783. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cross_entropy_loss.h +38 -0
  2784. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cross_entropy_loss_grad.h +38 -0
  2785. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/cummax.h +1 -1
  2786. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dense.h +1 -1
  2787. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/diag_ext.h +1 -1
  2788. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/diagonal_view.h +38 -0
  2789. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_all_gather.h +1 -1
  2790. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_all_gather_into_tensor.h +1 -1
  2791. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_all_gather_into_tensor_uneven.h +38 -0
  2792. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_all_reduce.h +1 -1
  2793. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_all_to_all_v.h +1 -1
  2794. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_all_to_all_v_single.h +1 -1
  2795. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_barrier.h +1 -1
  2796. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_batch_isend_irecv.h +1 -1
  2797. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_broadcast.h +1 -1
  2798. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_gather.h +1 -1
  2799. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_gather_into_tensor.h +1 -1
  2800. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_irecv.h +1 -1
  2801. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_isend.h +1 -1
  2802. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_reduce.h +1 -1
  2803. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_reduce_scatter.h +1 -1
  2804. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_reduce_scatter_tensor.h +1 -1
  2805. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_reduce_scatter_tensor_uneven.h +38 -0
  2806. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_scatter.h +1 -1
  2807. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dist_comm_scatter_tensor.h +1 -1
  2808. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/div.h +1 -1
  2809. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/divmod.h +1 -1
  2810. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/divmods.h +1 -1
  2811. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/divs.h +1 -1
  2812. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dot.h +1 -1
  2813. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/dynamic_quant_ext.h +1 -1
  2814. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/einsum_ext.h +38 -0
  2815. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/elu.h +1 -1
  2816. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/embedding.h +1 -1
  2817. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/embedding_dense_backward.h +1 -1
  2818. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/empty.h +38 -0
  2819. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/empty_like.h +38 -0
  2820. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/equal.h +1 -1
  2821. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/equal_ext.h +1 -1
  2822. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/erf.h +1 -1
  2823. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/erfc.h +1 -1
  2824. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/erfinv.h +1 -1
  2825. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/exp.h +1 -1
  2826. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/exp2.h +1 -1
  2827. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/expand_dims.h +1 -1
  2828. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/expand_dims_view.h +38 -0
  2829. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/expm1.h +1 -1
  2830. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/eye.h +1 -1
  2831. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/ffn_ext.h +1 -1
  2832. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/floor.h +1 -1
  2833. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/floor_div.h +1 -1
  2834. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/floor_div_scalar.h +1 -1
  2835. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/fmod_tensor.h +1 -1
  2836. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/frac.h +1 -1
  2837. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/full_like.h +1 -1
  2838. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/func_dropout_ext.h +38 -0
  2839. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/fused_infer_attention_score.h +1 -1
  2840. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gather_d.h +1 -1
  2841. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gather_d_grad_v2.h +1 -1
  2842. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gcd.h +1 -1
  2843. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gelu.h +1 -1
  2844. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gelu_ext.h +1 -1
  2845. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gelu_grad.h +1 -1
  2846. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gelu_grad_ext.h +1 -1
  2847. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/generator.h +1 -1
  2848. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/glu.h +1 -1
  2849. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/glu_grad.h +1 -1
  2850. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/greater.h +1 -1
  2851. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/greater_equal.h +1 -1
  2852. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/greater_equal_scalar.h +1 -1
  2853. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/grid_sampler_2d.h +1 -1
  2854. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/grid_sampler_2d_grad.h +1 -1
  2855. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/grid_sampler_3d.h +1 -1
  2856. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/grid_sampler_3d_grad.h +1 -1
  2857. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/group_norm.h +1 -1
  2858. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/group_norm_grad.h +1 -1
  2859. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/grouped_matmul.h +1 -1
  2860. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/grouped_matmul_v2.h +1 -1
  2861. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/grouped_matmul_v4.h +1 -1
  2862. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hardtanh.h +1 -1
  2863. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hardtanh_grad.h +1 -1
  2864. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hshrink.h +1 -1
  2865. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hshrink_grad.h +1 -1
  2866. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hsigmoid.h +1 -1
  2867. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hsigmoid_grad.h +1 -1
  2868. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hswish.h +1 -1
  2869. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/hswish_grad.h +1 -1
  2870. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/identity.h +1 -1
  2871. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/im2col_ext.h +1 -1
  2872. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/incre_flash_attention.h +1 -1
  2873. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/index.h +1 -1
  2874. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/index_add_ext.h +1 -1
  2875. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/index_fill_scalar.h +1 -1
  2876. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/index_fill_tensor.h +1 -1
  2877. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_comm_all_gather.h +1 -1
  2878. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_comm_all_reduce.h +1 -1
  2879. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_comm_all_to_all_v.h +1 -1
  2880. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_comm_irecv.h +1 -1
  2881. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_comm_isend.h +1 -1
  2882. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_comm_reduce_scatter.h +1 -1
  2883. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_index.h +1 -1
  2884. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_inplace_index_put.h +1 -1
  2885. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_moe_token_unpermute.h +38 -0
  2886. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inner_non_zero.h +1 -1
  2887. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_addmm.h +1 -1
  2888. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_bernoulli_scalar.h +38 -0
  2889. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_bernoulli_tensor.h +38 -0
  2890. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_clamp_scalar.h +1 -1
  2891. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_clamp_tensor.h +1 -1
  2892. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_copy.h +1 -1
  2893. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_div.h +1 -1
  2894. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_divmod.h +1 -1
  2895. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_divmods.h +1 -1
  2896. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_divs.h +1 -1
  2897. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_elu.h +1 -1
  2898. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_erfinv.h +1 -1
  2899. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_exponential.h +38 -0
  2900. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_fill_diagonal.h +1 -1
  2901. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_fill_scalar.h +1 -1
  2902. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_fill_tensor.h +1 -1
  2903. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_floor.h +1 -1
  2904. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_floor_divide.h +1 -1
  2905. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_floor_divides.h +1 -1
  2906. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_grouped_matmul_add.h +1 -1
  2907. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_hardtanh.h +1 -1
  2908. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_index_add.h +1 -1
  2909. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_index_put.h +1 -1
  2910. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_log.h +1 -1
  2911. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_masked_fill_scalar.h +1 -1
  2912. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_masked_fill_tensor.h +1 -1
  2913. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_matmul_add.h +38 -0
  2914. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_mul.h +1 -1
  2915. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_muls.h +1 -1
  2916. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_normal.h +1 -1
  2917. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_put.h +1 -1
  2918. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_random.h +1 -1
  2919. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_relu.h +1 -1
  2920. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_remainder_tensor_scalar.h +38 -0
  2921. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_remainder_tensor_tensor.h +38 -0
  2922. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_scatter_add.h +1 -1
  2923. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_scatter_src.h +1 -1
  2924. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_scatter_src_reduce.h +1 -1
  2925. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_scatter_value.h +1 -1
  2926. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_scatter_value_reduce.h +1 -1
  2927. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_silu.h +38 -0
  2928. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_sub_scalar.h +1 -1
  2929. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_tanh.h +1 -1
  2930. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_threshold.h +1 -1
  2931. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_uniform.h +1 -1
  2932. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/inplace_zero.h +1 -1
  2933. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/isclose.h +1 -1
  2934. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/isfinite.h +1 -1
  2935. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/isinf.h +1 -1
  2936. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/isneginf.h +1 -1
  2937. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/kl_div.h +1 -1
  2938. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/kl_div_grad.h +1 -1
  2939. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/kthvalue.h +1 -1
  2940. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/kv_cache_scatter_update.h +1 -1
  2941. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/layer_norm_ext.h +1 -1
  2942. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/leaky_relu_ext.h +1 -1
  2943. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/leaky_relu_grad_ext.h +1 -1
  2944. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/lerp.h +1 -1
  2945. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/lerp_scalar.h +1 -1
  2946. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/less.h +1 -1
  2947. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/less_equal.h +1 -1
  2948. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/linalg_qr.h +1 -1
  2949. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/linalg_vector_norm.h +1 -1
  2950. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/log.h +1 -1
  2951. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/log1p.h +1 -1
  2952. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/log_softmax.h +1 -1
  2953. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/log_softmax_grad.h +1 -1
  2954. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logaddexp.h +1 -1
  2955. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logaddexp2.h +1 -1
  2956. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logical_and.h +1 -1
  2957. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logical_not.h +1 -1
  2958. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logical_or.h +1 -1
  2959. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logical_xor.h +1 -1
  2960. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logsigmoid.h +1 -1
  2961. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logsigmoid_grad.h +1 -1
  2962. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/logsumexp.h +1 -1
  2963. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/masked_fill.h +1 -1
  2964. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/masked_scatter.h +38 -0
  2965. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/masked_select.h +1 -1
  2966. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/masked_select_grad.h +1 -1
  2967. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/matmul.h +1 -1
  2968. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/matmul_allreduce_add_rmsnorm.h +1 -1
  2969. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/matmul_ext.h +1 -1
  2970. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/max.h +1 -1
  2971. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/max_dim.h +1 -1
  2972. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/maximum.h +1 -1
  2973. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/mean_ext.h +1 -1
  2974. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/median_dim.h +1 -1
  2975. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/median_ext.h +1 -1
  2976. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/meshgrid.h +1 -1
  2977. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/min.h +1 -1
  2978. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/min_dim.h +1 -1
  2979. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/minimum.h +1 -1
  2980. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/mish_ext.h +1 -1
  2981. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/mish_grad_ext.h +1 -1
  2982. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/mla.h +38 -0
  2983. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_compute_expert_tokens.h +1 -1
  2984. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_distribute_combine.h +38 -0
  2985. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_distribute_dispatch.h +38 -0
  2986. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_finalize_routing.h +1 -1
  2987. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_gating_top_k_softmax.h +1 -1
  2988. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_init_routing.h +1 -1
  2989. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_init_routing_quant_v2.h +38 -0
  2990. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_init_routing_v2.h +1 -1
  2991. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_token_permute.h +1 -1
  2992. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_token_permute_grad.h +1 -1
  2993. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_token_unpermute.h +1 -1
  2994. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/moe_token_unpermute_grad.h +1 -1
  2995. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/mul.h +1 -1
  2996. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/muls.h +1 -1
  2997. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/multi_scale_deformable_attn.h +1 -1
  2998. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/multi_scale_deformable_attn_grad.h +1 -1
  2999. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/mv.h +1 -1
  3000. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/nan_to_num.h +1 -1
  3001. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/ne_scalar.h +1 -1
  3002. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/neg.h +1 -1
  3003. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/new_empty.h +38 -0
  3004. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/new_full.h +38 -0
  3005. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/new_ones.h +1 -1
  3006. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/new_zeros.h +1 -1
  3007. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/nllloss.h +1 -1
  3008. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/nllloss_2d.h +1 -1
  3009. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/nllloss_2d_grad.h +1 -1
  3010. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/nllloss_grad.h +1 -1
  3011. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/non_zero.h +1 -1
  3012. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/norm.h +1 -1
  3013. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/normal_float_float.h +1 -1
  3014. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/normal_float_tensor.h +1 -1
  3015. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/normal_tensor_float.h +1 -1
  3016. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/normal_tensor_tensor.h +1 -1
  3017. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/not_equal.h +1 -1
  3018. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/ones.h +1 -1
  3019. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/outer.h +1 -1
  3020. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/paged_attention.h +38 -0
  3021. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/pixel_shuffle.h +1 -1
  3022. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/polar.h +1 -1
  3023. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/pow.h +1 -1
  3024. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/pow_scalar_tensor.h +1 -1
  3025. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/pow_tensor_scalar.h +1 -1
  3026. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/prelu.h +1 -1
  3027. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/prelu_grad.h +1 -1
  3028. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/prod_ext.h +1 -1
  3029. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/quant_batch_matmul.h +1 -1
  3030. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/quant_matmul.h +38 -0
  3031. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/quant_v2.h +1 -1
  3032. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/randint.h +1 -1
  3033. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/randint_like.h +1 -1
  3034. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/randn.h +1 -1
  3035. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/randn_like.h +1 -1
  3036. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reciprocal.h +1 -1
  3037. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reduce_all.h +1 -1
  3038. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reduce_any.h +1 -1
  3039. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reduce_max.h +1 -1
  3040. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reduce_min.h +1 -1
  3041. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reflection_pad_1d.h +1 -1
  3042. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reflection_pad_1d_grad.h +1 -1
  3043. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reflection_pad_2d.h +1 -1
  3044. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reflection_pad_2d_grad.h +1 -1
  3045. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reflection_pad_3d.h +1 -1
  3046. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reflection_pad_3d_grad.h +1 -1
  3047. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/relu.h +1 -1
  3048. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/relu_grad.h +1 -1
  3049. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/repeat.h +1 -1
  3050. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/replication_pad_1d.h +1 -1
  3051. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/replication_pad_1d_grad.h +1 -1
  3052. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/replication_pad_2d.h +1 -1
  3053. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/replication_pad_2d_grad.h +1 -1
  3054. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/replication_pad_3d.h +1 -1
  3055. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/replication_pad_3d_grad.h +1 -1
  3056. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reshape.h +1 -1
  3057. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reshape_and_cache.h +38 -0
  3058. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/reverse_v2.h +1 -1
  3059. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/rms_norm_grad.h +1 -1
  3060. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/roll.h +1 -1
  3061. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/rotary_position_embedding.h +1 -1
  3062. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/rotary_position_embedding_grad.h +1 -1
  3063. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/round.h +1 -1
  3064. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/rsqrt.h +1 -1
  3065. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/scatter.h +1 -1
  3066. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/scatter_add_ext.h +1 -1
  3067. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/scatter_value.h +1 -1
  3068. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/searchsorted.h +1 -1
  3069. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/select.h +1 -1
  3070. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/select_ext_view.h +38 -0
  3071. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/select_v2.h +1 -1
  3072. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/selu_ext.h +1 -1
  3073. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/selu_grad.h +1 -1
  3074. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sigmoid.h +1 -1
  3075. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sigmoid_grad.h +1 -1
  3076. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sign.h +1 -1
  3077. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/silu.h +1 -1
  3078. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/silu_grad.h +1 -1
  3079. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sin.h +1 -1
  3080. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sinc.h +1 -1
  3081. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sinh.h +1 -1
  3082. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/slice.h +1 -1
  3083. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/slice_ext.h +1 -1
  3084. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/slice_ext_view.h +38 -0
  3085. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/smooth_l1_loss.h +1 -1
  3086. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/smooth_l1_loss_grad.h +1 -1
  3087. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/soft_margin_loss.h +1 -1
  3088. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/soft_margin_loss_grad.h +1 -1
  3089. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/softmax.h +1 -1
  3090. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/softmax_backward.h +1 -1
  3091. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/softplus_ext.h +1 -1
  3092. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/softplus_grad_ext.h +1 -1
  3093. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/softshrink.h +1 -1
  3094. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/softshrink_grad.h +1 -1
  3095. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/speed_fusion_attention.h +1 -1
  3096. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/speed_fusion_attention_grad.h +1 -1
  3097. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/split.h +1 -1
  3098. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sqrt.h +1 -1
  3099. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/square.h +1 -1
  3100. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/squeeze.h +1 -1
  3101. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/stack_ext.h +38 -0
  3102. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sub.h +1 -1
  3103. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sub_ext.h +1 -1
  3104. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sub_scalar.h +1 -1
  3105. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/sum_ext.h +1 -1
  3106. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/take.h +1 -1
  3107. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/tan.h +1 -1
  3108. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/tanh.h +1 -1
  3109. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/tanh_grad.h +1 -1
  3110. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/tensor_scatter_elements.h +1 -1
  3111. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/threshold.h +1 -1
  3112. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/threshold_grad.h +1 -1
  3113. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/tile.h +1 -1
  3114. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/transpose.h +1 -1
  3115. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/transpose_ext_view.h +38 -0
  3116. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/transpose_view.h +38 -0
  3117. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/triangular_solve.h +1 -1
  3118. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/triu.h +1 -1
  3119. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/trunc.h +1 -1
  3120. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/unique_consecutive.h +1 -1
  3121. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_bicubic2d.h +1 -1
  3122. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_bicubic2d_grad.h +1 -1
  3123. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_bilinear2d.h +1 -1
  3124. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_bilinear2d_grad.h +1 -1
  3125. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_linear1d.h +1 -1
  3126. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_linear1d_grad.h +1 -1
  3127. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_nearest1d.h +1 -1
  3128. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_nearest1d_grad.h +1 -1
  3129. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_nearest2d.h +1 -1
  3130. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_nearest2d_grad.h +1 -1
  3131. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_nearest3d.h +1 -1
  3132. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_nearest3d_grad.h +1 -1
  3133. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_trilinear3d.h +1 -1
  3134. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/upsample_trilinear3d_grad.h +1 -1
  3135. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/view.h +1 -1
  3136. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/weight_quant_batch_matmul.h +1 -1
  3137. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/xlogy.h +1 -1
  3138. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/xlogy_scalar_other.h +1 -1
  3139. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/xlogy_scalar_self.h +1 -1
  3140. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/zeros.h +1 -1
  3141. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/zeros_like_ext.h +38 -0
  3142. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/any.h +34 -0
  3143. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/any_ext.h +35 -0
  3144. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/binary_cross_entropy_with_logits.h +4 -4
  3145. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/cell_backward_hook.h +27 -0
  3146. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/clamp_scalar.h +2 -2
  3147. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/clamp_tensor.h +2 -3
  3148. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/contiguous.h +1 -1
  3149. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/copy.h +1 -1
  3150. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dense.h +2 -2
  3151. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_all_gather.h +1 -1
  3152. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_all_reduce.h +36 -0
  3153. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_barrier.h +36 -0
  3154. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_broadcast.h +2 -2
  3155. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_gather.h +1 -1
  3156. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_irecv.h +36 -0
  3157. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_isend.h +36 -0
  3158. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/dist_comm_scatter.h +1 -1
  3159. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/divmod.h +2 -3
  3160. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/empty.h +35 -0
  3161. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/empty_like.h +36 -0
  3162. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/group_norm.h +3 -3
  3163. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/grouped_matmul.h +1 -1
  3164. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/identity.h +1 -1
  3165. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/inner_comm_all_reduce.h +2 -3
  3166. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/inplace_copy.h +2 -2
  3167. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/layer_norm_ext.h +3 -3
  3168. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/masked_select.h +2 -2
  3169. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/matmul_ext.h +1 -1
  3170. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/max.h +1 -1
  3171. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/mean_ext.h +1 -1
  3172. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/meshgrid.h +4 -2
  3173. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/min.h +1 -1
  3174. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/new_empty.h +36 -0
  3175. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/new_ones.h +2 -2
  3176. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/new_zeros.h +2 -2
  3177. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/non_zero.h +1 -1
  3178. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/pixel_shuffle.h +2 -2
  3179. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/pow_scalar_tensor.h +1 -1
  3180. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/pow_tensor_scalar.h +1 -1
  3181. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/prod_ext.h +1 -1
  3182. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/reshape.h +4 -2
  3183. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/round.h +1 -1
  3184. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/searchsorted.h +3 -4
  3185. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/silu.h +1 -1
  3186. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/silu_grad.h +1 -2
  3187. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/sum_ext.h +1 -1
  3188. mindspore/include/mindspore/ops/kernel/cpu/pyboost/customize/unique_consecutive.h +2 -2
  3189. mindspore/include/mindspore/ops/kernel/cpu/sample_distorted_bounding_box_v2_cpu_kernel.h +4 -0
  3190. mindspore/include/mindspore/ops/kernel/cpu/sequence/bool_binary_arithmetic_cpu_kernel.h +42 -0
  3191. mindspore/include/mindspore/ops/kernel/cpu/sequence/sequence_len_cpu_kernel.h +0 -1
  3192. mindspore/include/mindspore/ops/kernel/cpu/sparse_apply_adagrad_cpu_kernel.h +1 -1
  3193. mindspore/include/mindspore/ops/kernel/cpu/sparse_apply_adagrad_v2_cpu_kernel.h +2 -2
  3194. mindspore/include/mindspore/ops/kernel/cpu/stft_cpu_kernel.h +16 -16
  3195. mindspore/include/mindspore/ops/kernel/cpu/utils/sampling_kernels.h +18 -15
  3196. mindspore/include/mindspore/ops/kernel/gpu/arrays/broadcast_to_gpu_kernel.h +1 -1
  3197. mindspore/include/mindspore/ops/kernel/gpu/arrays/contiguous_gpu_kernel.h +9 -6
  3198. mindspore/include/mindspore/ops/kernel/gpu/arrays/select_gpu_kernel.h +2 -2
  3199. mindspore/include/mindspore/ops/kernel/gpu/arrays/unique_consecutive_gpu_kernel.h +2 -2
  3200. mindspore/include/mindspore/ops/kernel/gpu/cuda_impl/cuda_class/unique_consecutive_helper.h +1 -1
  3201. mindspore/include/mindspore/ops/kernel/gpu/dynamic_akg/dynamic_utils.h +1 -1
  3202. mindspore/include/mindspore/ops/kernel/gpu/gpu_kernel.h +3 -4
  3203. mindspore/include/mindspore/ops/kernel/gpu/math/binary_ext_ops_gpu_kernel.h +2 -2
  3204. mindspore/include/mindspore/ops/kernel/gpu/math/correlate_gpu_kernel.h +15 -11
  3205. mindspore/include/mindspore/ops/kernel/gpu/math/eps_gpu_kernel.h +4 -4
  3206. mindspore/include/mindspore/ops/kernel/gpu/math/tracev2_grad_gpu_kernel.h +0 -1
  3207. mindspore/include/mindspore/ops/kernel/gpu/nccl/nccl_recv_gpu_kernel.h +1 -1
  3208. mindspore/include/mindspore/ops/kernel/gpu/nccl/nccl_send_gpu_kernel.h +1 -1
  3209. mindspore/include/mindspore/ops/kernel/gpu/nn/activation_grad_kernel.h +3 -3
  3210. mindspore/include/mindspore/ops/kernel/gpu/nn/adagrad_gpu_kernel.h +4 -2
  3211. mindspore/include/mindspore/ops/kernel/gpu/nn/adam_gpu_kernel.h +1 -1
  3212. mindspore/include/mindspore/ops/kernel/gpu/nn/batch_norm_grad_gpu_kernel.h +1 -0
  3213. mindspore/include/mindspore/ops/kernel/gpu/nn/kl_div_loss_grad_kernel.h +3 -2
  3214. mindspore/include/mindspore/ops/kernel/gpu/other/dynamic_stitch_gpu_kernel.h +6 -6
  3215. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/abs.h +1 -1
  3216. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/adaptive_avg_pool1d.h +1 -1
  3217. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/adaptive_avg_pool2d_grad_ext.h +1 -1
  3218. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/adaptive_avg_pool3d_grad_ext.h +1 -1
  3219. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/adaptive_max_pool1d.h +1 -1
  3220. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/adaptive_max_pool2d.h +1 -1
  3221. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/add.h +1 -1
  3222. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/add_ext.h +1 -1
  3223. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/add_layer_norm_grad.h +1 -1
  3224. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/add_rmsnorm_quant_v2.h +1 -1
  3225. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/add_scalar.h +1 -1
  3226. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/addcdiv_ext.h +1 -1
  3227. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/addcmul_ext.h +1 -1
  3228. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/any.h +38 -0
  3229. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/any_ext.h +38 -0
  3230. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/apply_rotary_pos_emb.h +38 -0
  3231. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/argmax_with_value.h +1 -1
  3232. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/argmin_with_value.h +1 -1
  3233. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/argsort.h +1 -1
  3234. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/as_strided.h +1 -1
  3235. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/atanh.h +1 -1
  3236. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/avg_pool1d.h +1 -1
  3237. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/avg_pool2d.h +1 -1
  3238. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/avg_pool2d_grad.h +1 -1
  3239. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/avg_pool3d_ext.h +1 -1
  3240. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/avg_pool3d_grad_ext.h +1 -1
  3241. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/baddbmm.h +1 -1
  3242. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/batch_mat_mul.h +1 -1
  3243. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/batch_norm_elemt.h +1 -1
  3244. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/batch_norm_elemt_grad.h +1 -1
  3245. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/batch_norm_gather_stats_with_counts.h +1 -1
  3246. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/batch_norm_reduce_grad.h +1 -1
  3247. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/batch_norm_stats.h +1 -1
  3248. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bernoulli_ext.h +1 -1
  3249. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/binary_cross_entropy.h +1 -1
  3250. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/binary_cross_entropy_grad.h +1 -1
  3251. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/binary_cross_entropy_with_logits.h +1 -1
  3252. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/binary_cross_entropy_with_logits_backward.h +1 -1
  3253. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bitwise_and_scalar.h +1 -1
  3254. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bitwise_and_tensor.h +1 -1
  3255. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bitwise_not.h +1 -1
  3256. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bitwise_or_scalar.h +1 -1
  3257. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bitwise_or_tensor.h +1 -1
  3258. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bitwise_xor_scalar.h +1 -1
  3259. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bitwise_xor_tensor.h +1 -1
  3260. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/bmm_ext.h +1 -1
  3261. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/broadcast_to.h +1 -1
  3262. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/broadcast_to_view.h +38 -0
  3263. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cast.h +1 -1
  3264. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/ceil.h +1 -1
  3265. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cell_backward_hook.h +38 -0
  3266. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/chunk.h +1 -1
  3267. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/chunk_view.h +38 -0
  3268. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/clamp_scalar.h +1 -1
  3269. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/clamp_tensor.h +1 -1
  3270. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/clone.h +1 -1
  3271. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/col2im_ext.h +1 -1
  3272. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/col2im_grad.h +1 -1
  3273. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/concat.h +1 -1
  3274. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/constant_pad_nd.h +1 -1
  3275. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/contiguous.h +1 -1
  3276. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/conv1d_padding.h +1 -1
  3277. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/conv2d_ext.h +1 -1
  3278. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/conv2d_padding.h +1 -1
  3279. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/conv3d_padding.h +1 -1
  3280. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/conv_transpose2d.h +1 -1
  3281. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/convolution.h +1 -1
  3282. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/convolution_grad.h +1 -1
  3283. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/convolution_str.h +1 -1
  3284. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/convolution_str_grad.h +1 -1
  3285. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/copy.h +1 -1
  3286. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cos.h +1 -1
  3287. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cosh.h +1 -1
  3288. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/count_nonzero.h +1 -1
  3289. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cross.h +1 -1
  3290. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cross_entropy_loss.h +38 -0
  3291. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cross_entropy_loss_grad.h +38 -0
  3292. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/cummax.h +1 -1
  3293. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dense.h +1 -1
  3294. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/diag_ext.h +1 -1
  3295. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/diagonal_view.h +38 -0
  3296. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_all_gather.h +1 -1
  3297. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_all_gather_into_tensor.h +1 -1
  3298. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_all_gather_into_tensor_uneven.h +38 -0
  3299. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_all_reduce.h +1 -1
  3300. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_all_to_all_v.h +1 -1
  3301. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_all_to_all_v_single.h +1 -1
  3302. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_barrier.h +1 -1
  3303. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_batch_isend_irecv.h +1 -1
  3304. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_broadcast.h +1 -1
  3305. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_gather.h +1 -1
  3306. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_gather_into_tensor.h +1 -1
  3307. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_irecv.h +1 -1
  3308. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_isend.h +1 -1
  3309. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_reduce.h +1 -1
  3310. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_reduce_scatter.h +1 -1
  3311. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_reduce_scatter_tensor.h +1 -1
  3312. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_reduce_scatter_tensor_uneven.h +38 -0
  3313. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_scatter.h +1 -1
  3314. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dist_comm_scatter_tensor.h +1 -1
  3315. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/div.h +1 -1
  3316. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/divmod.h +1 -1
  3317. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/divmods.h +1 -1
  3318. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/divs.h +1 -1
  3319. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dot.h +1 -1
  3320. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/dynamic_quant_ext.h +1 -1
  3321. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/einsum_ext.h +38 -0
  3322. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/elu.h +1 -1
  3323. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/embedding.h +1 -1
  3324. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/embedding_dense_backward.h +1 -1
  3325. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/equal.h +1 -1
  3326. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/equal_ext.h +1 -1
  3327. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/erf.h +1 -1
  3328. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/erfc.h +1 -1
  3329. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/erfinv.h +1 -1
  3330. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/exp.h +1 -1
  3331. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/exp2.h +1 -1
  3332. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/expand_dims.h +1 -1
  3333. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/expand_dims_view.h +38 -0
  3334. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/expm1.h +1 -1
  3335. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/eye.h +1 -1
  3336. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/ffn_ext.h +1 -1
  3337. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/floor.h +1 -1
  3338. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/floor_div.h +1 -1
  3339. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/floor_div_scalar.h +1 -1
  3340. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/fmod_tensor.h +1 -1
  3341. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/frac.h +1 -1
  3342. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/full_like.h +1 -1
  3343. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/func_dropout_ext.h +38 -0
  3344. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/fused_infer_attention_score.h +1 -1
  3345. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gather_d.h +1 -1
  3346. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gather_d_grad_v2.h +1 -1
  3347. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gcd.h +1 -1
  3348. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gelu.h +1 -1
  3349. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gelu_ext.h +1 -1
  3350. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gelu_grad.h +1 -1
  3351. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gelu_grad_ext.h +1 -1
  3352. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/generator.h +1 -1
  3353. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/glu.h +1 -1
  3354. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/glu_grad.h +1 -1
  3355. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/greater.h +1 -1
  3356. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/greater_equal.h +1 -1
  3357. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/greater_equal_scalar.h +1 -1
  3358. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/grid_sampler_2d.h +1 -1
  3359. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/grid_sampler_2d_grad.h +1 -1
  3360. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/grid_sampler_3d.h +1 -1
  3361. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/grid_sampler_3d_grad.h +1 -1
  3362. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/group_norm.h +1 -1
  3363. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/group_norm_grad.h +1 -1
  3364. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/grouped_matmul.h +1 -1
  3365. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/grouped_matmul_v2.h +1 -1
  3366. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/grouped_matmul_v4.h +1 -1
  3367. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hardtanh.h +1 -1
  3368. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hardtanh_grad.h +1 -1
  3369. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hshrink.h +1 -1
  3370. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hshrink_grad.h +1 -1
  3371. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hsigmoid.h +1 -1
  3372. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hsigmoid_grad.h +1 -1
  3373. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hswish.h +1 -1
  3374. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/hswish_grad.h +1 -1
  3375. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/identity.h +1 -1
  3376. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/im2col_ext.h +1 -1
  3377. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/incre_flash_attention.h +1 -1
  3378. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/index.h +1 -1
  3379. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/index_add_ext.h +1 -1
  3380. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/index_fill_scalar.h +1 -1
  3381. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/index_fill_tensor.h +1 -1
  3382. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_comm_all_gather.h +1 -1
  3383. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_comm_all_reduce.h +1 -1
  3384. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_comm_all_to_all_v.h +1 -1
  3385. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_comm_irecv.h +1 -1
  3386. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_comm_isend.h +1 -1
  3387. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_comm_reduce_scatter.h +1 -1
  3388. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_index.h +1 -1
  3389. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_inplace_index_put.h +1 -1
  3390. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_moe_token_unpermute.h +38 -0
  3391. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inner_non_zero.h +1 -1
  3392. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_addmm.h +1 -1
  3393. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_bernoulli_scalar.h +38 -0
  3394. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_bernoulli_tensor.h +38 -0
  3395. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_clamp_scalar.h +1 -1
  3396. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_clamp_tensor.h +1 -1
  3397. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_copy.h +1 -1
  3398. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_div.h +1 -1
  3399. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_divmod.h +1 -1
  3400. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_divmods.h +1 -1
  3401. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_divs.h +1 -1
  3402. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_elu.h +1 -1
  3403. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_erfinv.h +1 -1
  3404. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_exponential.h +38 -0
  3405. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_fill_diagonal.h +1 -1
  3406. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_fill_scalar.h +1 -1
  3407. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_fill_tensor.h +1 -1
  3408. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_floor.h +1 -1
  3409. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_floor_divide.h +1 -1
  3410. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_floor_divides.h +1 -1
  3411. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_grouped_matmul_add.h +1 -1
  3412. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_hardtanh.h +1 -1
  3413. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_index_add.h +1 -1
  3414. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_index_put.h +1 -1
  3415. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_log.h +1 -1
  3416. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_masked_fill_scalar.h +1 -1
  3417. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_masked_fill_tensor.h +1 -1
  3418. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_matmul_add.h +38 -0
  3419. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_mul.h +1 -1
  3420. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_muls.h +1 -1
  3421. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_normal.h +1 -1
  3422. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_put.h +1 -1
  3423. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_random.h +1 -1
  3424. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_relu.h +1 -1
  3425. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_scatter_add.h +1 -1
  3426. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_scatter_src.h +1 -1
  3427. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_scatter_src_reduce.h +1 -1
  3428. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_scatter_value.h +1 -1
  3429. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_scatter_value_reduce.h +1 -1
  3430. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_silu.h +38 -0
  3431. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_sub_scalar.h +1 -1
  3432. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_tanh.h +1 -1
  3433. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_threshold.h +1 -1
  3434. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_uniform.h +1 -1
  3435. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/inplace_zero.h +1 -1
  3436. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/isclose.h +1 -1
  3437. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/isfinite.h +1 -1
  3438. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/isinf.h +1 -1
  3439. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/isneginf.h +1 -1
  3440. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/kl_div.h +1 -1
  3441. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/kl_div_grad.h +1 -1
  3442. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/kthvalue.h +1 -1
  3443. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/kv_cache_scatter_update.h +1 -1
  3444. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/leaky_relu_ext.h +1 -1
  3445. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/leaky_relu_grad_ext.h +1 -1
  3446. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/lerp.h +1 -1
  3447. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/lerp_scalar.h +1 -1
  3448. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/less.h +1 -1
  3449. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/less_equal.h +1 -1
  3450. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/linalg_qr.h +1 -1
  3451. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/linalg_vector_norm.h +1 -1
  3452. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/log.h +1 -1
  3453. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/log1p.h +1 -1
  3454. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/log_softmax.h +1 -1
  3455. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/log_softmax_grad.h +1 -1
  3456. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logaddexp.h +1 -1
  3457. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logaddexp2.h +1 -1
  3458. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logical_and.h +1 -1
  3459. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logical_not.h +1 -1
  3460. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logical_or.h +1 -1
  3461. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logical_xor.h +1 -1
  3462. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logsigmoid.h +1 -1
  3463. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logsigmoid_grad.h +1 -1
  3464. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/logsumexp.h +1 -1
  3465. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/masked_fill.h +1 -1
  3466. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/masked_scatter.h +38 -0
  3467. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/masked_select.h +1 -1
  3468. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/masked_select_grad.h +1 -1
  3469. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/matmul.h +1 -1
  3470. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/matmul_allreduce_add_rmsnorm.h +1 -1
  3471. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/matmul_ext.h +1 -1
  3472. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/max.h +1 -1
  3473. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/max_dim.h +1 -1
  3474. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/maximum.h +1 -1
  3475. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/mean_ext.h +1 -1
  3476. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/median_dim.h +1 -1
  3477. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/median_ext.h +1 -1
  3478. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/meshgrid.h +1 -1
  3479. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/min.h +1 -1
  3480. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/min_dim.h +1 -1
  3481. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/minimum.h +1 -1
  3482. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/mish_ext.h +1 -1
  3483. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/mish_grad_ext.h +1 -1
  3484. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/mla.h +38 -0
  3485. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_compute_expert_tokens.h +1 -1
  3486. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_distribute_combine.h +38 -0
  3487. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_distribute_dispatch.h +38 -0
  3488. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_finalize_routing.h +1 -1
  3489. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_gating_top_k_softmax.h +1 -1
  3490. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_init_routing.h +1 -1
  3491. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_init_routing_quant_v2.h +38 -0
  3492. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_init_routing_v2.h +1 -1
  3493. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_token_permute.h +1 -1
  3494. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_token_permute_grad.h +1 -1
  3495. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_token_unpermute.h +1 -1
  3496. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/moe_token_unpermute_grad.h +1 -1
  3497. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/mul.h +1 -1
  3498. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/muls.h +1 -1
  3499. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/multi_scale_deformable_attn.h +1 -1
  3500. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/multi_scale_deformable_attn_grad.h +1 -1
  3501. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/mv.h +1 -1
  3502. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/nan_to_num.h +1 -1
  3503. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/ne_scalar.h +1 -1
  3504. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/neg.h +1 -1
  3505. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/new_full.h +38 -0
  3506. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/new_ones.h +1 -1
  3507. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/new_zeros.h +1 -1
  3508. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/nllloss.h +1 -1
  3509. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/nllloss_2d.h +1 -1
  3510. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/nllloss_2d_grad.h +1 -1
  3511. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/nllloss_grad.h +1 -1
  3512. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/non_zero.h +1 -1
  3513. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/norm.h +1 -1
  3514. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/normal_float_float.h +1 -1
  3515. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/normal_float_tensor.h +1 -1
  3516. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/normal_tensor_float.h +1 -1
  3517. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/normal_tensor_tensor.h +1 -1
  3518. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/not_equal.h +1 -1
  3519. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/ones.h +1 -1
  3520. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/outer.h +1 -1
  3521. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/paged_attention.h +38 -0
  3522. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/pixel_shuffle.h +1 -1
  3523. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/polar.h +1 -1
  3524. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/pow.h +1 -1
  3525. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/pow_scalar_tensor.h +1 -1
  3526. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/pow_tensor_scalar.h +1 -1
  3527. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/prelu.h +1 -1
  3528. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/prelu_grad.h +1 -1
  3529. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/prod_ext.h +1 -1
  3530. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/quant_batch_matmul.h +1 -1
  3531. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/quant_matmul.h +38 -0
  3532. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/quant_v2.h +1 -1
  3533. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/randint.h +1 -1
  3534. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/randint_like.h +1 -1
  3535. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/randn.h +1 -1
  3536. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/randn_like.h +1 -1
  3537. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reciprocal.h +1 -1
  3538. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reduce_all.h +1 -1
  3539. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reduce_any.h +1 -1
  3540. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reduce_max.h +1 -1
  3541. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reduce_min.h +1 -1
  3542. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reflection_pad_1d.h +1 -1
  3543. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reflection_pad_1d_grad.h +1 -1
  3544. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reflection_pad_2d.h +1 -1
  3545. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reflection_pad_2d_grad.h +1 -1
  3546. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reflection_pad_3d.h +1 -1
  3547. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reflection_pad_3d_grad.h +1 -1
  3548. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/relu.h +1 -1
  3549. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/relu_grad.h +1 -1
  3550. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/repeat.h +1 -1
  3551. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/replication_pad_1d.h +1 -1
  3552. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/replication_pad_1d_grad.h +1 -1
  3553. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/replication_pad_2d.h +1 -1
  3554. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/replication_pad_2d_grad.h +1 -1
  3555. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/replication_pad_3d.h +1 -1
  3556. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/replication_pad_3d_grad.h +1 -1
  3557. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reshape.h +1 -1
  3558. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reshape_and_cache.h +38 -0
  3559. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/reverse_v2.h +1 -1
  3560. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/rms_norm_grad.h +1 -1
  3561. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/roll.h +1 -1
  3562. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/rotary_position_embedding.h +1 -1
  3563. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/rotary_position_embedding_grad.h +1 -1
  3564. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/round.h +1 -1
  3565. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/rsqrt.h +1 -1
  3566. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/scatter.h +1 -1
  3567. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/scatter_add_ext.h +1 -1
  3568. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/scatter_value.h +1 -1
  3569. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/searchsorted.h +1 -1
  3570. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/select.h +1 -1
  3571. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/select_ext_view.h +38 -0
  3572. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/select_v2.h +1 -1
  3573. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/selu_ext.h +1 -1
  3574. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/selu_grad.h +1 -1
  3575. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sigmoid.h +1 -1
  3576. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sigmoid_grad.h +1 -1
  3577. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sign.h +1 -1
  3578. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/silu.h +1 -1
  3579. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/silu_grad.h +1 -1
  3580. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sin.h +1 -1
  3581. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sinc.h +1 -1
  3582. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sinh.h +1 -1
  3583. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/slice.h +1 -1
  3584. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/slice_ext.h +1 -1
  3585. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/slice_ext_view.h +38 -0
  3586. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/smooth_l1_loss.h +1 -1
  3587. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/smooth_l1_loss_grad.h +1 -1
  3588. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/soft_margin_loss.h +1 -1
  3589. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/soft_margin_loss_grad.h +1 -1
  3590. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/softmax.h +1 -1
  3591. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/softmax_backward.h +1 -1
  3592. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/softplus_ext.h +1 -1
  3593. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/softplus_grad_ext.h +1 -1
  3594. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/softshrink.h +1 -1
  3595. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/softshrink_grad.h +1 -1
  3596. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/speed_fusion_attention.h +1 -1
  3597. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/speed_fusion_attention_grad.h +1 -1
  3598. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/split.h +1 -1
  3599. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sqrt.h +1 -1
  3600. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/square.h +1 -1
  3601. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/squeeze.h +1 -1
  3602. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sub.h +1 -1
  3603. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sub_ext.h +1 -1
  3604. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sub_scalar.h +1 -1
  3605. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/sum_ext.h +1 -1
  3606. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/take.h +1 -1
  3607. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/tan.h +1 -1
  3608. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/tanh.h +1 -1
  3609. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/tanh_grad.h +1 -1
  3610. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/tensor_scatter_elements.h +1 -1
  3611. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/threshold.h +1 -1
  3612. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/threshold_grad.h +1 -1
  3613. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/tile.h +1 -1
  3614. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/transpose.h +1 -1
  3615. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/transpose_ext_view.h +38 -0
  3616. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/transpose_view.h +38 -0
  3617. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/triangular_solve.h +1 -1
  3618. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/triu.h +1 -1
  3619. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/trunc.h +1 -1
  3620. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_bicubic2d.h +1 -1
  3621. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_bicubic2d_grad.h +1 -1
  3622. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_bilinear2d.h +1 -1
  3623. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_bilinear2d_grad.h +1 -1
  3624. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_linear1d.h +1 -1
  3625. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_linear1d_grad.h +1 -1
  3626. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_nearest1d.h +1 -1
  3627. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_nearest1d_grad.h +1 -1
  3628. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_nearest2d.h +1 -1
  3629. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_nearest2d_grad.h +1 -1
  3630. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_nearest3d.h +1 -1
  3631. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_nearest3d_grad.h +1 -1
  3632. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_trilinear3d.h +1 -1
  3633. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/upsample_trilinear3d_grad.h +1 -1
  3634. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/view.h +1 -1
  3635. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/weight_quant_batch_matmul.h +1 -1
  3636. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/xlogy.h +1 -1
  3637. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/xlogy_scalar_other.h +1 -1
  3638. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/xlogy_scalar_self.h +1 -1
  3639. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/zeros.h +1 -1
  3640. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/any.h +34 -0
  3641. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/any_ext.h +35 -0
  3642. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/cell_backward_hook.h +27 -0
  3643. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/clamp_scalar.h +2 -2
  3644. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/clamp_tensor.h +2 -3
  3645. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/contiguous.h +1 -1
  3646. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/copy.h +1 -1
  3647. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/dense.h +2 -2
  3648. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/divmod.h +2 -3
  3649. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/grouped_matmul.h +1 -1
  3650. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/identity.h +1 -1
  3651. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/inner_comm_all_gather.h +1 -1
  3652. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/inner_comm_all_reduce.h +1 -1
  3653. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/inner_comm_isend.h +1 -1
  3654. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/inner_comm_reduce_scatter.h +1 -1
  3655. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/masked_select.h +2 -2
  3656. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/matmul_ext.h +1 -1
  3657. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/max.h +1 -1
  3658. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/mean_ext.h +1 -1
  3659. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/meshgrid.h +4 -2
  3660. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/min.h +1 -1
  3661. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/new_ones.h +2 -2
  3662. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/new_zeros.h +2 -2
  3663. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/non_zero.h +1 -1
  3664. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/pixel_shuffle.h +2 -2
  3665. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/pow_scalar_tensor.h +1 -1
  3666. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/pow_tensor_scalar.h +1 -1
  3667. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/prod_ext.h +1 -1
  3668. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/reshape.h +4 -2
  3669. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/searchsorted.h +3 -4
  3670. mindspore/include/mindspore/ops/kernel/gpu/pyboost/customize/sum_ext.h +1 -1
  3671. mindspore/include/mindspore/ops/kernel/gpu/random/random_categorical_gpu_kernel.h +4 -8
  3672. mindspore/include/mindspore/ops/kernel/gpu/rl/buffer_sample_gpu_kernel.h +8 -8
  3673. mindspore/include/mindspore/ops/kernel/gpu/rl/gru_gpu_kernel.h +1 -0
  3674. mindspore/include/mindspore/ops/kernel/gpu/sparse/csr_sparse_matrix_to_sparse_tensor_gpu_kernel.h +1 -1
  3675. mindspore/include/mindspore/ops/kernel/gpu/sparse/dense_to_csr_sparse_matrix_gpu_kernel.h +3 -3
  3676. mindspore/include/mindspore/ops/kernel/gpu/sparse/sparse_matrix_sparse_matmul_gpu_kernel.h +2 -2
  3677. mindspore/include/mindspore/ops/kernel/include/common/common_utils.h +9 -0
  3678. mindspore/include/mindspore/ops/kernel/include/common/device_address.h +290 -33
  3679. mindspore/include/mindspore/ops/kernel/include/common/device_type.h +3 -5
  3680. mindspore/include/mindspore/ops/kernel/include/common/kernel.h +26 -1
  3681. mindspore/include/mindspore/ops/kernel/include/common/kernel_tensor.h +135 -306
  3682. mindspore/include/mindspore/ops/op_def/array_op_name.h +0 -1
  3683. mindspore/include/mindspore/ops/op_def/array_ops.h +0 -2
  3684. mindspore/include/mindspore/ops/op_def/auto_generate/gen_lite_ops.h +3224 -2884
  3685. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_def.h +814 -759
  3686. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_a.h +63 -61
  3687. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_b.h +28 -27
  3688. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_c.h +38 -34
  3689. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_d.h +29 -25
  3690. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_e.h +28 -26
  3691. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_f.h +22 -19
  3692. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_g.h +25 -21
  3693. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_h.h +6 -6
  3694. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_i.h +74 -66
  3695. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_k.h +3 -2
  3696. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_l.h +32 -32
  3697. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_m.h +46 -38
  3698. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_n.h +19 -17
  3699. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_o.h +2 -2
  3700. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_p.h +6 -7
  3701. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_q.h +6 -3
  3702. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_r.h +61 -60
  3703. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_s.h +64 -60
  3704. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_t.h +19 -17
  3705. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_u.h +14 -14
  3706. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_v.h +2 -2
  3707. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_x.h +1 -1
  3708. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_name_z.h +1 -1
  3709. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_a.h +63 -61
  3710. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_b.h +28 -27
  3711. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_c.h +38 -34
  3712. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_d.h +29 -25
  3713. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_e.h +28 -26
  3714. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_f.h +22 -19
  3715. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_g.h +25 -21
  3716. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_h.h +6 -6
  3717. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_i.h +74 -66
  3718. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_k.h +3 -2
  3719. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_l.h +32 -32
  3720. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_m.h +46 -38
  3721. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_n.h +19 -17
  3722. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_o.h +2 -2
  3723. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_p.h +6 -7
  3724. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_q.h +6 -3
  3725. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_r.h +61 -60
  3726. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_s.h +64 -60
  3727. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_t.h +19 -17
  3728. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_u.h +14 -14
  3729. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_v.h +2 -2
  3730. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_x.h +1 -1
  3731. mindspore/include/mindspore/ops/op_def/auto_generate/gen_ops_primitive_z.h +1 -1
  3732. mindspore/include/mindspore/ops/op_def/framework_op_name.h +0 -1
  3733. mindspore/include/mindspore/ops/op_def/framework_ops.h +3 -2
  3734. mindspore/include/mindspore/ops/op_def/nn_op_name.h +4 -0
  3735. mindspore/include/mindspore/ops/op_def/op_enum.h +4 -0
  3736. mindspore/include/mindspore/ops/op_def/other_op_name.h +6 -0
  3737. mindspore/include/mindspore/ops/op_def/other_ops.h +2 -0
  3738. mindspore/include/mindspore/ops/op_def/structure_ops.h +12 -3
  3739. mindspore/include/mindspore/ops/ops_utils/memory_overlap.h +4 -5
  3740. mindspore/include/mindspore/ops/ops_utils/op_constants.h +13 -0
  3741. mindspore/include/mindspore/ops/ops_utils/op_utils.h +14 -16
  3742. mindspore/include/mindspore/ops/ops_utils/type_dispatch.h +51 -42
  3743. mindspore/include/mindspore/ops/view/as_strided_strides_calc.h +5 -1
  3744. mindspore/include/mindspore/ops/view/broadcast_to_strides_calc.h +7 -2
  3745. mindspore/include/mindspore/ops/view/broadcast_to_view_strides_calc.h +34 -0
  3746. mindspore/include/mindspore/ops/view/chunk_strides_calc.h +5 -1
  3747. mindspore/include/mindspore/ops/view/chunk_view_strides_calc.h +35 -0
  3748. mindspore/include/mindspore/ops/view/diagonal_strides_calc.h +6 -3
  3749. mindspore/include/mindspore/ops/view/diagonal_view_strides_calc.h +32 -0
  3750. mindspore/include/mindspore/ops/view/expand_dims_strides_calc.h +5 -1
  3751. mindspore/include/mindspore/ops/view/expand_dims_view_strides_calc.h +34 -0
  3752. mindspore/include/mindspore/ops/view/narrow_strides_calc.h +4 -2
  3753. mindspore/include/mindspore/ops/view/narrow_view_strides_calc.h +33 -0
  3754. mindspore/include/mindspore/ops/view/reshape_strides_calc.h +2 -1
  3755. mindspore/include/mindspore/ops/view/select_ext_view_strides_calc.h +33 -0
  3756. mindspore/include/mindspore/ops/view/slice_ext_strides_calc.h +7 -1
  3757. mindspore/include/mindspore/ops/view/slice_ext_view_strides_calc.h +35 -0
  3758. mindspore/include/mindspore/ops/view/slice_strides_calc.h +4 -1
  3759. mindspore/include/mindspore/ops/view/split_strides_calc.h +3 -1
  3760. mindspore/include/mindspore/ops/view/split_tensor_strides_calc.h +5 -2
  3761. mindspore/include/mindspore/ops/view/split_tensor_view_strides_calc.h +33 -0
  3762. mindspore/include/mindspore/ops/view/split_with_size_strides_calc.h +5 -1
  3763. mindspore/include/mindspore/ops/view/split_with_size_view_strides_calc.h +36 -0
  3764. mindspore/include/mindspore/ops/view/squeeze_strides_calc.h +3 -0
  3765. mindspore/include/mindspore/ops/view/transpose_ext_view_strides_calc.h +33 -0
  3766. mindspore/include/mindspore/ops/view/transpose_strides_calc.h +3 -1
  3767. mindspore/include/mindspore/ops/view/transpose_view_strides_calc.h +32 -0
  3768. mindspore/include/mindspore/ops/view/unstack_ext_view_strides_calc.h +28 -0
  3769. mindspore/include/mindspore/ops/view/view_strides_calc.h +5 -2
  3770. mindspore/include/mindspore/ops/view/view_strides_calculator.h +1 -2
  3771. mindspore/include/ms_extension.h +12 -5
  3772. mindspore/lib/libavcodec.so.59 +0 -0
  3773. mindspore/lib/libavdevice.so.59 +0 -0
  3774. mindspore/lib/libavfilter.so.8 +0 -0
  3775. mindspore/lib/libavformat.so.59 +0 -0
  3776. mindspore/lib/libavutil.so.57 +0 -0
  3777. mindspore/lib/libdnnl.so.2 +0 -0
  3778. mindspore/lib/libicuuc.so.74 +0 -0
  3779. mindspore/lib/libmindspore_backend_common.so +0 -0
  3780. mindspore/lib/libmindspore_backend_manager.so +0 -0
  3781. mindspore/lib/libmindspore_common.so +0 -0
  3782. mindspore/lib/libmindspore_core.so +0 -0
  3783. mindspore/lib/libmindspore_dump.so +0 -0
  3784. mindspore/lib/libmindspore_extension.so +0 -0
  3785. mindspore/lib/libmindspore_frontend.so +0 -0
  3786. mindspore/lib/libmindspore_ge_backend.so +0 -0
  3787. mindspore/lib/libmindspore_glog.so.0 +0 -0
  3788. mindspore/lib/libmindspore_gpr.so.15 +0 -0
  3789. mindspore/lib/libmindspore_grpc++.so.1 +0 -0
  3790. mindspore/lib/libmindspore_grpc.so.15 +0 -0
  3791. mindspore/lib/libmindspore_memory_pool.so +0 -0
  3792. mindspore/lib/libmindspore_ms_backend.so +0 -0
  3793. mindspore/lib/libmindspore_ops.so +0 -0
  3794. mindspore/lib/libmindspore_ops_kernel_common.so +0 -0
  3795. mindspore/lib/libmindspore_profiler.so +0 -0
  3796. mindspore/lib/libmindspore_pyboost.so +0 -0
  3797. mindspore/lib/libmindspore_pynative.so +0 -0
  3798. mindspore/lib/libmindspore_res_manager.so +0 -0
  3799. mindspore/lib/libmindspore_runtime_pipeline.so +0 -0
  3800. mindspore/lib/libmpi_adapter.so +0 -0
  3801. mindspore/lib/libmpi_collective.so +0 -0
  3802. mindspore/lib/libnnacl.so +0 -0
  3803. mindspore/lib/libopencv_core.so.4.5 +0 -0
  3804. mindspore/lib/libopencv_imgcodecs.so.4.5 +0 -0
  3805. mindspore/lib/libopencv_imgproc.so.4.5 +0 -0
  3806. mindspore/lib/libps_cache.so +0 -0
  3807. mindspore/lib/libswresample.so.4 +0 -0
  3808. mindspore/lib/libswscale.so.6 +0 -0
  3809. mindspore/lib/plugin/ascend/custom_aicpu_ops/op_impl/cpu/aicpu_kernel/impl/libcust_cpu_kernels.so +0 -0
  3810. mindspore/lib/plugin/ascend/custom_aicpu_ops/op_impl/cpu/config/cust_aicpu_kernel.json +96 -152
  3811. mindspore/lib/plugin/ascend/custom_aicpu_ops/op_proto/libcust_op_proto.so +0 -0
  3812. mindspore/lib/plugin/ascend/custom_ascendc_910b/framework/plugin/npu_supported_ops.json +6 -0
  3813. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/lib/libcust_opapi.so +0 -0
  3814. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +0 -180
  3815. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/config/ascend910_93/aic-ascend910_93-ops-info.json +0 -180
  3816. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +0 -180
  3817. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/all_finite.py +28 -12
  3818. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.json +2 -1
  3819. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.o +0 -0
  3820. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.json +2 -1
  3821. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.o +0 -0
  3822. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.json +2 -1
  3823. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.o +0 -0
  3824. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.json +2 -1
  3825. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.o +0 -0
  3826. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.json +2 -1
  3827. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.o +0 -0
  3828. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.json +2 -1
  3829. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.o +0 -0
  3830. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.json +2 -1
  3831. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_52f59e2a65d9b1bb002de35c2819754a.o +0 -0
  3832. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.json +2 -1
  3833. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_6b5e50e30256d85838d6ce83514df20f.o +0 -0
  3834. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.json +2 -1
  3835. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/all_finite/AllFinite_74e4ac02880d452e3308c94af273562e.o +0 -0
  3836. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend310p/binary_info_config.json +0 -300
  3837. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/binary_info_config.json +0 -300
  3838. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910b/binary_info_config.json +0 -300
  3839. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so +0 -0
  3840. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/op_tiling/liboptiling.so +0 -0
  3841. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_proto/inc/op_proto.h +0 -22
  3842. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +0 -0
  3843. mindspore/lib/plugin/ascend/custom_ascendc_910b/version.info +1 -1
  3844. mindspore/lib/plugin/ascend/custom_compiler/OWNERS +1 -3
  3845. mindspore/lib/plugin/ascend/libakg.so +0 -0
  3846. mindspore/lib/plugin/ascend/libascend_collective.so +0 -0
  3847. mindspore/lib/plugin/ascend/libd_collective.so +0 -0
  3848. mindspore/lib/plugin/ascend/libdvpp_utils.so +0 -0
  3849. mindspore/lib/plugin/ascend/libhccl_plugin.so +0 -0
  3850. mindspore/lib/plugin/ascend/liblowlatency_collective.so +0 -0
  3851. mindspore/lib/plugin/ascend/libmindspore_ascend_res_manager.so +0 -0
  3852. mindspore/lib/plugin/ascend/libmindspore_atb_kernels.so +0 -0
  3853. mindspore/lib/plugin/ascend/libmindspore_cpu_kernels.so +0 -0
  3854. mindspore/lib/plugin/ascend/libmindspore_extension_ascend_atb.a +0 -0
  3855. mindspore/lib/plugin/ascend/libmindspore_graph_ir.so +0 -0
  3856. mindspore/lib/plugin/ascend/libmindspore_internal_kernels.so +0 -0
  3857. mindspore/lib/plugin/ascend/libmindspore_pyboost_atb_kernels.so +0 -0
  3858. mindspore/lib/plugin/ascend/libms_ascend_native_boost.so +0 -0
  3859. mindspore/lib/plugin/ascend/libms_atb_boost.so +0 -0
  3860. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/params/faUpdate.h +35 -0
  3861. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/params/fill.h +4 -1
  3862. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/params/logprobs.h +28 -0
  3863. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/params/matmul.h +7 -6
  3864. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/params/norm.h +8 -5
  3865. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/params/params.h +3 -0
  3866. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/asdops/params/scatter_elements_v2.h +39 -0
  3867. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/fused_add_topk_div.h +42 -0
  3868. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/kvcache.h +7 -1
  3869. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/mla.h +55 -0
  3870. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/mla_preprocess.h +39 -0
  3871. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/pagedattention.h +1 -0
  3872. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/params.h +7 -0
  3873. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/reshape_and_cache.h +2 -1
  3874. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/rms_norm_and_rope_and_reshape_and_cache.h +31 -0
  3875. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/rope_q_concat.h +26 -0
  3876. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/swiglu_quant.h +26 -0
  3877. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/toppsample_rand.h +31 -0
  3878. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/atbops/params/unpad_flash_attention.h +12 -1
  3879. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcal_api.h +1 -1
  3880. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcal_comm.h +4 -3
  3881. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcal_types.h +2 -1
  3882. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lccl.h +2 -0
  3883. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/lcoc.h +53 -0
  3884. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/lcoc_args.h +116 -0
  3885. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/lcoc_base.h +57 -0
  3886. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/lcoc_func.h +33 -0
  3887. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/tiling/tiling.h +86 -0
  3888. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/tiling/tiling_91093.h +31 -0
  3889. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/tiling/tiling_910B.h +31 -0
  3890. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/tiling/tiling_args.h +154 -0
  3891. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc/tiling/tiling_func.h +50 -0
  3892. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc.h +5 -35
  3893. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc_args.h +97 -47
  3894. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/lcoc_func.h +33 -0
  3895. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling/tiling.h +86 -0
  3896. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling/tiling_91093.h +31 -0
  3897. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling/tiling_910B.h +31 -0
  3898. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling/tiling_args.h +154 -0
  3899. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling/tiling_func.h +50 -0
  3900. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling.h +86 -0
  3901. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling_91093.h +11 -9
  3902. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling_910B.h +12 -10
  3903. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling_args.h +38 -69
  3904. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/lcal/tiling_func.h +14 -8
  3905. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/base/aicpu_kernel_base.h +1 -1
  3906. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/bin_handle.h +6 -0
  3907. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/tensor.h +5 -0
  3908. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/types.h +4 -1
  3909. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/bf16/bf16_t.h +20 -0
  3910. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/cfg/cfg_core.h +39 -0
  3911. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/cfg/cfg_item.h +25 -0
  3912. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/file_system/file_system.h +2 -0
  3913. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/inifile/ini_file.h +2 -0
  3914. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/log/log.h +7 -7
  3915. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/log/log_core.h +1 -0
  3916. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/log/log_sink_file.h +1 -0
  3917. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/include/mki/utils/rt/base/types.h +2 -2
  3918. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libasdops.so +0 -0
  3919. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libasdops_static.a +0 -0
  3920. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libatb_mixops.so +0 -0
  3921. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libatb_mixops_static.a +0 -0
  3922. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libexp_mixops_static.a +0 -0
  3923. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libexp_ops_static.a +0 -0
  3924. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/liblcal.so +0 -0
  3925. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/liblcal_static.a +0 -0
  3926. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libmki.so +0 -0
  3927. mindspore/lib/plugin/ascend/ms_kernels_internal/asdops/lib/libtbe_adapter.so +0 -0
  3928. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/base_type.h +9 -4
  3929. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/internal_op.h +8 -10
  3930. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/op_creator.h +40 -7
  3931. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/op_param.h +85 -1
  3932. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/include/tiling_utils.h +3 -138
  3933. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_layer_norm_op.so +0 -0
  3934. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_op.so +0 -0
  3935. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libadd_rms_norm_quant_op.so +0 -0
  3936. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_310p_op.so +0 -0
  3937. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libapply_rotary_pos_emb_op.so +0 -0
  3938. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libcast_op.so +0 -0
  3939. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libcompare_op.so +0 -0
  3940. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libfused_add_topk_div_op.so +0 -0
  3941. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libgelu_op.so +0 -0
  3942. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libgroup_topk_op.so +0 -0
  3943. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libkv_scale_cache_op.so +0 -0
  3944. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libllama_op.so +0 -0
  3945. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmatmul_op.so +0 -0
  3946. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmoe_gating_group_topk_op.so +0 -0
  3947. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmoe_init_routing_op.so +0 -0
  3948. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmoe_token_unpermute_op.so +0 -0
  3949. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libms_kernels_internal.so +0 -0
  3950. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmulti_weight_matmul_kernel_gelu_op.so +0 -0
  3951. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libmulti_weight_matmul_kernel_op.so +0 -0
  3952. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_nz_op.so +0 -0
  3953. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libreshape_and_cache_op.so +0 -0
  3954. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/librms_norm_op.so +0 -0
  3955. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libswft_dynamic_quant_op.so +0 -0
  3956. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libswft_matmul_op.so +0 -0
  3957. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libswft_moe_init_routing_op.so +0 -0
  3958. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libswft_paged_attention_op.so +0 -0
  3959. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libswft_reshape_and_cache_nz_op.so +0 -0
  3960. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libswft_transpose_batch_matmul_transpose_op.so +0 -0
  3961. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libswiglu_dynamic_quant_op.so +0 -0
  3962. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/lib/libtranspose_batch_matmul_transpose_op.so +0 -0
  3963. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_grouped_matmul_f16_310p/internal_grouped_matmul_f16_310p.o +0 -0
  3964. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_grouped_matmul_f16_310p/internal_grouped_matmul_f16_310p_0.o +0 -0
  3965. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_grouped_matmul_i8_310p/internal_grouped_matmul_i8_310p.o +0 -0
  3966. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_grouped_matmul_i8_310p/internal_grouped_matmul_i8_310p_0.o +0 -0
  3967. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_f16_nz/internal_pp_matmul_f16_nz.o +0 -0
  3968. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_f16_nz/internal_pp_matmul_f16_nz_0.o +0 -0
  3969. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_i8_nz_compress/internal_pp_matmul_i8_nz_compress.o +0 -0
  3970. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_i8_nz_compress/internal_pp_matmul_i8_nz_compress_0.o +0 -0
  3971. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_int8_nz/internal_pp_matmul_int8_nz.o +0 -0
  3972. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/object_kernels/internal_pp_matmul_int8_nz/internal_pp_matmul_int8_nz_0.o +0 -0
  3973. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libadd_rms_norm_ascend310p.so +0 -0
  3974. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libadd_rms_norm_quant_ascend310p.so +0 -0
  3975. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libapply_rotary_pos_emb_310p_ascend310p.so +0 -0
  3976. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libcast_ascend310p.so +0 -0
  3977. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libcompare_ascend310p.so +0 -0
  3978. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libfused_add_topk_div_ascend310p.so +0 -0
  3979. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libgelu_ascend310p.so +0 -0
  3980. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmatmul_ascend310p.so +0 -0
  3981. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmoe_gating_group_topk_ascend310p.so +0 -0
  3982. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmoe_init_routing_ascend310p.so +0 -0
  3983. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmoe_token_unpermute_ascend310p.so +0 -0
  3984. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmulti_weight_matmul_kernel_ascend310p.so +0 -0
  3985. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libmulti_weight_matmul_kernel_gelu_ascend310p.so +0 -0
  3986. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libreshape_and_cache_nz_ascend310p.so +0 -0
  3987. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libswft_dynamic_quant_ascend310p.so +0 -0
  3988. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libswft_matmul_ascend310p.so +0 -0
  3989. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libswft_moe_init_routing_ascend310p.so +0 -0
  3990. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libswft_paged_attention_ascend310p.so +0 -0
  3991. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libswft_reshape_and_cache_nz_ascend310p.so +0 -0
  3992. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libswft_transpose_batch_matmul_transpose_ascend310p.so +0 -0
  3993. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend310p/so_kernels/libswiglu_dynamic_quant_ascend310p.so +0 -0
  3994. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bnsd_full_mix.o +0 -0
  3995. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bnsd_tri_mix.o +0 -0
  3996. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bsh_full_mix.o +0 -0
  3997. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_bf16_bsh_tri_mix.o +0 -0
  3998. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bnsd_full_mix.o +0 -0
  3999. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bnsd_tri_mix.o +0 -0
  4000. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bsh_full_mix.o +0 -0
  4001. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/flash_attention_score/flash_attention_score_fp16_bsh_tri_mix.o +0 -0
  4002. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix.o +0 -0
  4003. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix_mix_aic_0.o +0 -0
  4004. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_matmul_postfusion_mix/internal_matmul_postfusion_mix_mix_aiv_0.o +0 -0
  4005. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix.o +0 -0
  4006. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix_mix_aic_0.o +0 -0
  4007. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/internal_multi_weight_matmul_postfusion_mix/internal_multi_weight_matmul_postfusion_mix_mix_aiv_0.o +0 -0
  4008. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_bf16.o +0 -0
  4009. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp16.o +0 -0
  4010. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_bf16_fp32.o +0 -0
  4011. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_bf16.o +0 -0
  4012. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp16.o +0 -0
  4013. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/matmul_add_rmsnorm/matmul_add_rmsnorm_fp16_fp32.o +0 -0
  4014. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2.o +0 -0
  4015. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2_mix_aic_0.o +0 -0
  4016. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/object_kernels/paged_attention_v2/paged_attention_v2_mix_aiv_0.o +0 -0
  4017. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_layer_norm_ascend910b.so +0 -0
  4018. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_rms_norm_ascend910b.so +0 -0
  4019. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libadd_rms_norm_quant_ascend910b.so +0 -0
  4020. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libapply_rotary_pos_emb_ascend910b.so +0 -0
  4021. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libcast_ascend910b.so +0 -0
  4022. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libcompare_ascend910b.so +0 -0
  4023. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libgelu_ascend910b.so +0 -0
  4024. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libgroup_topk_ascend910b.so +0 -0
  4025. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libkv_scale_cache_ascend910b.so +0 -0
  4026. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libllama_ascend910b.so +0 -0
  4027. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libmatmul_ascend910b.so +0 -0
  4028. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libmoe_gating_group_topk_ascend910b.so +0 -0
  4029. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libmulti_weight_matmul_kernel_ascend910b.so +0 -0
  4030. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libreshape_and_cache_ascend910b.so +0 -0
  4031. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/librms_norm_ascend910b.so +0 -0
  4032. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libswiglu_dynamic_quant_ascend910b.so +0 -0
  4033. mindspore/lib/plugin/ascend/ms_kernels_internal/internal_kernel/op_kernels/ascend910b/so_kernels/libtranspose_batch_matmul_transpose_ascend910b.so +0 -0
  4034. mindspore/lib/plugin/cpu/libakg.so +0 -0
  4035. mindspore/lib/plugin/cpu/libmindspore_cpu_res_manager.so +0 -0
  4036. mindspore/lib/plugin/libmindspore_ascend.so.2 +0 -0
  4037. mindspore/lib/plugin/libmindspore_ops_ascend.so +0 -0
  4038. mindspore/lib/plugin/libmindspore_ops_host.so +0 -0
  4039. mindspore/mindrecord/tools/cifar10.py +61 -11
  4040. mindspore/mindrecord/tools/cifar10_to_mr.py +5 -0
  4041. mindspore/mint/__init__.py +6 -46
  4042. mindspore/mint/distributed/__init__.py +5 -0
  4043. mindspore/mint/distributed/distributed.py +429 -23
  4044. mindspore/mint/nn/__init__.py +1 -1
  4045. mindspore/mint/nn/functional.py +53 -6
  4046. mindspore/mint/nn/layer/_functions.py +163 -294
  4047. mindspore/mint/nn/layer/activation.py +8 -6
  4048. mindspore/mint/nn/layer/conv.py +140 -104
  4049. mindspore/mint/nn/layer/normalization.py +11 -25
  4050. mindspore/mint/optim/adam.py +19 -18
  4051. mindspore/mint/optim/adamw.py +14 -8
  4052. mindspore/mint/optim/sgd.py +5 -5
  4053. mindspore/nn/cell.py +491 -623
  4054. mindspore/nn/grad/cell_grad.py +11 -12
  4055. mindspore/nn/layer/activation.py +36 -36
  4056. mindspore/nn/layer/basic.py +74 -77
  4057. mindspore/nn/layer/channel_shuffle.py +4 -4
  4058. mindspore/nn/layer/combined.py +4 -2
  4059. mindspore/nn/layer/conv.py +117 -110
  4060. mindspore/nn/layer/dense.py +9 -7
  4061. mindspore/nn/layer/embedding.py +50 -52
  4062. mindspore/nn/layer/image.py +38 -40
  4063. mindspore/nn/layer/math.py +111 -112
  4064. mindspore/nn/layer/normalization.py +56 -44
  4065. mindspore/nn/layer/pooling.py +58 -63
  4066. mindspore/nn/layer/rnn_cells.py +33 -33
  4067. mindspore/nn/layer/rnns.py +56 -56
  4068. mindspore/nn/layer/thor_layer.py +74 -73
  4069. mindspore/nn/layer/transformer.py +11 -1
  4070. mindspore/nn/learning_rate_schedule.py +20 -20
  4071. mindspore/nn/loss/loss.py +79 -81
  4072. mindspore/nn/optim/adam.py +4 -6
  4073. mindspore/nn/optim/adasum.py +2 -2
  4074. mindspore/nn/optim/asgd.py +2 -0
  4075. mindspore/nn/optim/lamb.py +1 -3
  4076. mindspore/nn/optim/optimizer.py +1 -1
  4077. mindspore/nn/optim/tft_wrapper.py +2 -3
  4078. mindspore/nn/optim/thor.py +2 -2
  4079. mindspore/nn/probability/distribution/_utils/utils.py +2 -2
  4080. mindspore/nn/probability/distribution/exponential.py +2 -1
  4081. mindspore/nn/probability/distribution/poisson.py +2 -1
  4082. mindspore/nn/sparse/sparse.py +3 -3
  4083. mindspore/nn/wrap/cell_wrapper.py +73 -42
  4084. mindspore/nn/wrap/grad_reducer.py +37 -52
  4085. mindspore/nn/wrap/loss_scale.py +72 -74
  4086. mindspore/numpy/array_creations.py +7 -7
  4087. mindspore/numpy/fft.py +1 -1
  4088. mindspore/numpy/math_ops.py +5 -5
  4089. mindspore/numpy/utils_const.py +1 -1
  4090. mindspore/ops/_grad_experimental/grad_comm_ops.py +51 -13
  4091. mindspore/ops/_grad_experimental/grad_debug_ops.py +14 -0
  4092. mindspore/ops/_grad_experimental/grad_inner_ops.py +0 -9
  4093. mindspore/ops/_op_impl/cpu/__init__.py +1 -0
  4094. mindspore/ops/_op_impl/cpu/joinedstr_op.py +28 -0
  4095. mindspore/ops/_vmap/vmap_array_ops.py +31 -13
  4096. mindspore/ops/_vmap/vmap_nn_ops.py +8 -16
  4097. mindspore/ops/auto_generate/cpp_create_prim_instance_helper.py +460 -419
  4098. mindspore/ops/auto_generate/gen_extend_func.py +1231 -1349
  4099. mindspore/ops/auto_generate/gen_ops_def.py +6895 -6215
  4100. mindspore/ops/auto_generate/gen_ops_prim.py +16686 -15462
  4101. mindspore/ops/auto_generate/pyboost_inner_prim.py +342 -312
  4102. mindspore/ops/composite/__init__.py +10 -0
  4103. mindspore/ops/composite/base.py +9 -5
  4104. mindspore/ops/composite/multitype_ops/__init__.py +12 -1
  4105. mindspore/ops/composite/multitype_ops/_compile_utils.py +133 -109
  4106. mindspore/ops/composite/multitype_ops/_constexpr_utils.py +1 -1
  4107. mindspore/ops/composite/multitype_ops/add_impl.py +70 -2
  4108. mindspore/ops/composite/multitype_ops/div_impl.py +49 -0
  4109. mindspore/ops/composite/multitype_ops/floordiv_impl.py +29 -0
  4110. mindspore/ops/composite/multitype_ops/getitem_impl.py +11 -0
  4111. mindspore/ops/composite/multitype_ops/mod_impl.py +5 -3
  4112. mindspore/ops/composite/multitype_ops/mul_impl.py +49 -0
  4113. mindspore/ops/composite/multitype_ops/setitem_impl.py +57 -0
  4114. mindspore/ops/composite/multitype_ops/sub_impl.py +34 -0
  4115. mindspore/ops/composite/multitype_ops/zeros_like_impl.py +14 -0
  4116. mindspore/ops/function/__init__.py +4 -1
  4117. mindspore/ops/function/_add_attr_func.py +11 -6
  4118. mindspore/ops/function/array_func.py +19 -102
  4119. mindspore/ops/function/debug_func.py +8 -5
  4120. mindspore/ops/function/grad/grad_func.py +5 -13
  4121. mindspore/ops/function/math_func.py +77 -572
  4122. mindspore/ops/function/nn_func.py +46 -94
  4123. mindspore/ops/function/other_func.py +4 -1
  4124. mindspore/ops/function/random_func.py +44 -5
  4125. mindspore/ops/function/vmap_func.py +2 -1
  4126. mindspore/ops/functional.py +4 -4
  4127. mindspore/ops/functional_overload.py +1206 -630
  4128. mindspore/ops/op_info_register.py +21 -0
  4129. mindspore/ops/operations/__init__.py +16 -11
  4130. mindspore/ops/operations/_custom_ops_utils.py +689 -34
  4131. mindspore/ops/operations/_inner_ops.py +14 -18
  4132. mindspore/ops/operations/_sequence_ops.py +1 -1
  4133. mindspore/ops/operations/array_ops.py +5 -51
  4134. mindspore/ops/operations/comm_ops.py +186 -41
  4135. mindspore/ops/operations/custom_ops.py +303 -177
  4136. mindspore/ops/operations/debug_ops.py +59 -4
  4137. mindspore/ops/operations/image_ops.py +13 -13
  4138. mindspore/ops/operations/manually_defined/ops_def.py +27 -28
  4139. mindspore/ops/operations/math_ops.py +8 -9
  4140. mindspore/ops/operations/nn_ops.py +8 -40
  4141. mindspore/ops/primitive.py +9 -20
  4142. mindspore/ops/tensor_method.py +63 -15
  4143. mindspore/ops_generate/api/cpp_create_prim_instance_helper_generator.py +1 -1
  4144. mindspore/ops_generate/api/functional_map_cpp_generator.py +10 -9
  4145. mindspore/ops_generate/api/functions_cc_generator.py +58 -10
  4146. mindspore/ops_generate/api/tensor_func_reg_cpp_generator.py +1 -1
  4147. mindspore/ops_generate/common/base_generator.py +14 -0
  4148. mindspore/ops_generate/common/gen_constants.py +8 -3
  4149. mindspore/ops_generate/common/gen_utils.py +0 -19
  4150. mindspore/ops_generate/common/op_proto.py +11 -4
  4151. mindspore/ops_generate/common/template.py +88 -11
  4152. mindspore/ops_generate/gen_ops.py +1 -1
  4153. mindspore/ops_generate/op_def/lite_ops_cpp_generator.py +4 -4
  4154. mindspore/ops_generate/op_def/ops_def_cc_generator.py +0 -3
  4155. mindspore/ops_generate/op_def/ops_name_h_generator.py +0 -3
  4156. mindspore/ops_generate/op_def/ops_primitive_h_generator.py +0 -4
  4157. mindspore/ops_generate/op_def_py/op_prim_py_generator.py +5 -2
  4158. mindspore/ops_generate/pyboost/auto_grad_impl_cc_generator.py +49 -8
  4159. mindspore/ops_generate/pyboost/auto_grad_reg_cc_generator.py +2 -2
  4160. mindspore/ops_generate/pyboost/gen_pyboost_func.py +31 -16
  4161. mindspore/ops_generate/pyboost/op_template_parser.py +98 -72
  4162. mindspore/ops_generate/pyboost/pyboost_functions_cpp_generator.py +70 -273
  4163. mindspore/ops_generate/pyboost/pyboost_functions_h_generator.py +14 -6
  4164. mindspore/ops_generate/pyboost/pyboost_functions_impl_cpp_generator.py +316 -0
  4165. mindspore/ops_generate/pyboost/pyboost_functions_py_generator.py +1 -1
  4166. mindspore/ops_generate/pyboost/pyboost_grad_function_cpp_generator.py +5 -3
  4167. mindspore/ops_generate/pyboost/pyboost_inner_prim_generator.py +1 -1
  4168. mindspore/ops_generate/pyboost/pyboost_internal_functions_cpp_generator.py +76 -0
  4169. mindspore/ops_generate/pyboost/pyboost_internal_functions_h_generator.py +76 -0
  4170. mindspore/ops_generate/pyboost/pyboost_internal_kernel_info_adapter_generator.py +125 -0
  4171. mindspore/ops_generate/pyboost/pyboost_native_grad_functions_generator.py +4 -3
  4172. mindspore/ops_generate/pyboost/pyboost_op_cpp_code_generator.py +348 -61
  4173. mindspore/ops_generate/pyboost/pyboost_overload_functions_cpp_generator.py +1 -1
  4174. mindspore/ops_generate/pyboost/pyboost_utils.py +118 -9
  4175. mindspore/ops_generate/tensor_py_cc_generator.py +1 -24
  4176. mindspore/parallel/_auto_parallel_context.py +16 -23
  4177. mindspore/parallel/_cell_wrapper.py +113 -45
  4178. mindspore/parallel/_parallel_serialization.py +4 -3
  4179. mindspore/parallel/_ps_context.py +4 -6
  4180. mindspore/parallel/_tensor.py +167 -12
  4181. mindspore/parallel/_transformer/moe.py +1 -1
  4182. mindspore/parallel/_transformer/transformer.py +17 -12
  4183. mindspore/parallel/_utils.py +5 -11
  4184. mindspore/parallel/auto_parallel.py +35 -14
  4185. mindspore/parallel/checkpoint_convert.py +3 -3
  4186. mindspore/parallel/checkpoint_transform.py +13 -7
  4187. mindspore/parallel/cluster/process_entity/_api.py +88 -49
  4188. mindspore/parallel/cluster/process_entity/_utils.py +95 -7
  4189. mindspore/parallel/cluster/run.py +48 -7
  4190. mindspore/parallel/function/__init__.py +8 -1
  4191. mindspore/parallel/function/reshard_func.py +12 -12
  4192. mindspore/parallel/nn/__init__.py +15 -2
  4193. mindspore/parallel/nn/parallel_cell_wrapper.py +50 -14
  4194. mindspore/parallel/nn/parallel_grad_reducer.py +7 -14
  4195. mindspore/parallel/shard.py +10 -25
  4196. mindspore/parallel/transform_safetensors.py +469 -174
  4197. mindspore/profiler/__init__.py +2 -1
  4198. mindspore/profiler/analysis/parser/timeline_assembly_factory/ascend_timeline_assembler.py +7 -7
  4199. mindspore/profiler/analysis/parser/timeline_assembly_factory/base_timeline_assembler.py +3 -0
  4200. mindspore/profiler/analysis/parser/timeline_assembly_factory/trace_view_container.py +12 -6
  4201. mindspore/profiler/analysis/parser/timeline_creator/cpu_op_timeline_creator.py +3 -3
  4202. mindspore/profiler/analysis/parser/timeline_creator/fwk_timeline_creator.py +3 -3
  4203. mindspore/profiler/analysis/parser/timeline_creator/msprof_timeline_creator.py +4 -4
  4204. mindspore/profiler/analysis/parser/timeline_creator/scope_layer_timeline_creator.py +3 -3
  4205. mindspore/profiler/analysis/parser/timeline_event/fwk_event.py +4 -1
  4206. mindspore/profiler/analysis/parser/timeline_event/timeline_event_pool.py +2 -1
  4207. mindspore/profiler/analysis/task_manager.py +1 -1
  4208. mindspore/profiler/analysis/viewer/ascend_communication_viewer.py +5 -1
  4209. mindspore/profiler/analysis/viewer/ascend_integrate_viewer.py +2 -1
  4210. mindspore/profiler/analysis/viewer/ascend_kernel_details_viewer.py +10 -9
  4211. mindspore/profiler/analysis/viewer/ascend_op_memory_viewer.py +43 -23
  4212. mindspore/profiler/analysis/viewer/ascend_step_trace_time_viewer.py +3 -2
  4213. mindspore/profiler/analysis/viewer/ms_minddata_viewer.py +9 -5
  4214. mindspore/profiler/analysis/viewer/ms_operator_details_viewer.py +132 -0
  4215. mindspore/profiler/common/constant.py +16 -0
  4216. mindspore/profiler/common/msprof_cmd_tool.py +2 -2
  4217. mindspore/profiler/common/path_manager.py +9 -0
  4218. mindspore/profiler/common/profiler_context.py +50 -29
  4219. mindspore/profiler/common/profiler_info.py +0 -16
  4220. mindspore/profiler/common/profiler_meta_data.py +1 -0
  4221. mindspore/profiler/common/profiler_op_analyse.py +239 -0
  4222. mindspore/profiler/common/profiler_output_path.py +23 -8
  4223. mindspore/profiler/common/profiler_parameters.py +128 -35
  4224. mindspore/profiler/dynamic_profile/__init__.py +0 -0
  4225. mindspore/profiler/dynamic_profile/dynamic_monitor_proxy.py +39 -0
  4226. mindspore/profiler/dynamic_profile/dynamic_profiler_config_context.py +666 -0
  4227. mindspore/profiler/dynamic_profile/dynamic_profiler_utils.py +62 -0
  4228. mindspore/profiler/dynamic_profiler.py +374 -338
  4229. mindspore/profiler/envprofiler.py +42 -12
  4230. mindspore/profiler/experimental_config.py +112 -7
  4231. mindspore/profiler/mstx.py +33 -12
  4232. mindspore/profiler/platform/__init__.py +2 -3
  4233. mindspore/profiler/platform/cpu_profiler.py +10 -4
  4234. mindspore/profiler/platform/npu_profiler.py +30 -20
  4235. mindspore/profiler/profiler.py +218 -154
  4236. mindspore/profiler/profiler_action_controller.py +65 -77
  4237. mindspore/profiler/profiler_interface.py +2 -2
  4238. mindspore/profiler/schedule.py +10 -4
  4239. mindspore/rewrite/common/config.py +1 -0
  4240. mindspore/rewrite/common/namer.py +1 -0
  4241. mindspore/rewrite/common/namespace.py +1 -0
  4242. mindspore/rewrite/node/node.py +31 -11
  4243. mindspore/rewrite/parsers/assign_parser.py +1 -1
  4244. mindspore/rewrite/symbol_tree/symbol_tree.py +2 -2
  4245. mindspore/run_check/_check_version.py +7 -10
  4246. mindspore/runtime/__init__.py +8 -6
  4247. mindspore/runtime/event.py +10 -4
  4248. mindspore/runtime/executor.py +87 -45
  4249. mindspore/runtime/memory.py +31 -32
  4250. mindspore/runtime/thread_bind_core.py +299 -165
  4251. mindspore/safeguard/rewrite_obfuscation.py +12 -13
  4252. mindspore/scipy/linalg.py +2 -2
  4253. mindspore/scipy/utils_const.py +0 -17
  4254. mindspore/train/_utils.py +17 -7
  4255. mindspore/train/amp.py +43 -23
  4256. mindspore/train/callback/__init__.py +5 -5
  4257. mindspore/train/callback/_callback.py +2 -1
  4258. mindspore/train/callback/_checkpoint.py +4 -14
  4259. mindspore/train/callback/_flops_collector.py +11 -7
  4260. mindspore/train/callback/_landscape.py +0 -1
  4261. mindspore/train/callback/_train_fault_tolerance.py +98 -21
  4262. mindspore/train/data_sink.py +15 -6
  4263. mindspore/train/dataset_helper.py +14 -5
  4264. mindspore/train/model.py +133 -69
  4265. mindspore/train/serialization.py +168 -126
  4266. mindspore/train/summary/summary_record.py +13 -2
  4267. mindspore/train/train_thor/model_thor.py +2 -2
  4268. mindspore/utils/__init__.py +3 -2
  4269. mindspore/utils/bin/dataset-cache +0 -0
  4270. mindspore/utils/bin/dataset-cache-server +0 -0
  4271. mindspore/utils/dryrun.py +0 -6
  4272. mindspore/utils/runtime_execution_order_check.py +163 -77
  4273. mindspore/utils/sdc_detect.py +68 -0
  4274. mindspore/utils/utils.py +14 -17
  4275. mindspore/version.py +1 -1
  4276. mindspore-2.7.0.dist-info/METADATA +368 -0
  4277. mindspore-2.7.0.dist-info/RECORD +12024 -0
  4278. mindspore-2.7.0.dist-info/WHEEL +5 -0
  4279. mindspore/_deprecated/__init__.py +0 -17
  4280. mindspore/_deprecated/jit.py +0 -198
  4281. mindspore/_extends/remote/kernel_build_server_ascend.py +0 -75
  4282. mindspore/common/auto_dynamic_shape.py +0 -504
  4283. mindspore/communication/_hccl_management.py +0 -297
  4284. mindspore/experimental/es/__init__.py +0 -22
  4285. mindspore/experimental/es/embedding_service.py +0 -891
  4286. mindspore/experimental/es/embedding_service_layer.py +0 -581
  4287. mindspore/include/mindspore/ccsrc/backend/common/graph_kernel/proactive_fallback_expander.h +0 -39
  4288. mindspore/include/mindspore/ccsrc/backend/common/session/session_context.h +0 -47
  4289. mindspore/include/mindspore/ccsrc/backend/ge_backend/pass/matmul_allreduce_add_rmsnorm_fusion.h +0 -67
  4290. mindspore/include/mindspore/ccsrc/backend/graph_compiler/backend.h +0 -124
  4291. mindspore/include/mindspore/ccsrc/backend/graph_compiler/backend_base.h +0 -205
  4292. mindspore/include/mindspore/ccsrc/backend/graph_compiler/ge_backend/ge_backend.h +0 -86
  4293. mindspore/include/mindspore/ccsrc/debug/data_dump/data_dumper.h +0 -56
  4294. mindspore/include/mindspore/ccsrc/debug/hooker/acl_data_adapter.h +0 -51
  4295. mindspore/include/mindspore/ccsrc/debug/hooker/adapter.h +0 -75
  4296. mindspore/include/mindspore/ccsrc/debug/hooker/deprecated_env.h +0 -27
  4297. mindspore/include/mindspore/ccsrc/debug/hooker/hook_debugger.h +0 -55
  4298. mindspore/include/mindspore/ccsrc/debug/hooker/hook_dynamic_loader.h +0 -52
  4299. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/decoder_k_v_cache_info.h +0 -58
  4300. mindspore/include/mindspore/ccsrc/frontend/parallel/ops_info/prompt_k_v_cache_info.h +0 -59
  4301. mindspore/include/mindspore/ccsrc/include/backend/debug/data_dump/overflow_dumper.h +0 -50
  4302. mindspore/include/mindspore/ccsrc/include/backend/device_synchronizer.h +0 -49
  4303. mindspore/include/mindspore/ccsrc/include/backend/distributed/rpc/rdma/constants.h +0 -174
  4304. mindspore/include/mindspore/ccsrc/include/backend/distributed/rpc/rdma/rdma_client.h +0 -83
  4305. mindspore/include/mindspore/ccsrc/include/backend/distributed/rpc/rdma/rdma_server.h +0 -71
  4306. mindspore/include/mindspore/ccsrc/include/common/np_dtype/np_dtypes.h +0 -42
  4307. mindspore/include/mindspore/ccsrc/minddata/dataset/kernels/image/lite_image_utils.h +0 -239
  4308. mindspore/include/mindspore/ccsrc/pipeline/jit/pi/utils/ptr_list_ref.h +0 -423
  4309. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/pipeline_jit.h +0 -68
  4310. mindspore/include/mindspore/ccsrc/pipeline/jit/ps/static_analysis/inplace_validation.h +0 -32
  4311. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/common/ascend_utils.h +0 -43
  4312. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/device/ascend_kernel_runtime.h +0 -88
  4313. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/device/ascend_stream_assign.h +0 -255
  4314. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/ascend_deprecated_interface.h +0 -46
  4315. mindspore/include/mindspore/ccsrc/plugin/device/ascend/hal/hardware/ge_device_context.h +0 -81
  4316. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/dvm/dvm.h +0 -232
  4317. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/ge/ge_kernel_build.h +0 -28
  4318. mindspore/include/mindspore/ccsrc/plugin/device/ascend/kernel/ge/ge_kernel_mod.h +0 -78
  4319. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/base/model_creator.h +0 -27
  4320. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_core.h +0 -43
  4321. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_entity.h +0 -44
  4322. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_sink.h +0 -32
  4323. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_sink_file.h +0 -39
  4324. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_sink_stdout.h +0 -30
  4325. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/log/log_stream.h +0 -51
  4326. mindspore/include/mindspore/ccsrc/plugin/device/ascend/llm_boost/atb/include/atb_speed/utils/filesystem.h +0 -45
  4327. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/format_type/rectify_do_mask_kernel_info.h +0 -44
  4328. mindspore/include/mindspore/ccsrc/plugin/device/ascend/optimizer/ir_fusion/flash_attention_fusion.h +0 -73
  4329. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/device/cpu_hash_table.h +0 -127
  4330. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/device/cpu_hash_table_util.h +0 -114
  4331. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/device/cpu_kernel_runtime.h +0 -82
  4332. mindspore/include/mindspore/ccsrc/plugin/device/cpu/hal/hardware/cpu_session.h +0 -61
  4333. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/custom/custom_julia_cpu_kernel.h +0 -50
  4334. mindspore/include/mindspore/ccsrc/plugin/device/cpu/kernel/custom/julia_api.h +0 -443
  4335. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/device/gpu_kernel_runtime.h +0 -145
  4336. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/hardware/gpu_deprecated_interface.h +0 -43
  4337. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/hardware/gpu_inference_session.h +0 -50
  4338. mindspore/include/mindspore/ccsrc/plugin/device/gpu/hal/hardware/gpu_session.h +0 -93
  4339. mindspore/include/mindspore/ccsrc/plugin/res_manager/ascend/ascend_device_address/ascend_device_synchronizer.h +0 -45
  4340. mindspore/include/mindspore/ccsrc/plugin/res_manager/cpu/cpu_device_address/cpu_device_synchronizer.h +0 -45
  4341. mindspore/include/mindspore/ccsrc/plugin/res_manager/gpu/device/gpu_device_synchronizer.h +0 -44
  4342. mindspore/include/mindspore/ccsrc/ps/core/communicator/ssl_http.h +0 -60
  4343. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/select_ext.h +0 -44
  4344. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/transpose_ext.h +0 -44
  4345. mindspore/include/mindspore/ccsrc/pyboost/auto_generate/unstack_ext.h +0 -44
  4346. mindspore/include/mindspore/ccsrc/pynative/grad/auto_grad.h +0 -77
  4347. mindspore/include/mindspore/ccsrc/pynative/grad/ir/bprop_tensor_replace.h +0 -58
  4348. mindspore/include/mindspore/ccsrc/pynative/grad/ir/dynamic_shape.h +0 -204
  4349. mindspore/include/mindspore/ccsrc/pynative/grad/ir/ir_bprop.h +0 -163
  4350. mindspore/include/mindspore/ccsrc/pynative/grad/ir/ir_grad.h +0 -114
  4351. mindspore/include/mindspore/ccsrc/pynative/grad/ir/ir_pass.h +0 -71
  4352. mindspore/include/mindspore/ccsrc/pynative/grad/jit/jit_dfunctor.h +0 -28
  4353. mindspore/include/mindspore/ccsrc/pynative/grad/variable.h +0 -466
  4354. mindspore/include/mindspore/ccsrc/pynative/op_function/auto_generate/pyboost_functions.h +0 -1019
  4355. mindspore/include/mindspore/ccsrc/runtime/device/kernel_runtime.h +0 -223
  4356. mindspore/include/mindspore/ccsrc/runtime/device/kernel_runtime_manager.h +0 -71
  4357. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/condition_gather_actor.h +0 -78
  4358. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/control_flow/condition_switch_actor.h +0 -91
  4359. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/actor/custom_actor.h +0 -66
  4360. mindspore/include/mindspore/ccsrc/runtime/graph_scheduler/inline_control_flow_scheduler.h +0 -81
  4361. mindspore/include/mindspore/ccsrc/runtime/hardware/deprecated_interface.h +0 -47
  4362. mindspore/include/mindspore/core/include/base/fp8_e4m3.h +0 -263
  4363. mindspore/include/mindspore/core/include/base/fp8_e5m2.h +0 -258
  4364. mindspore/include/mindspore/core/include/ir/base_tensor.h +0 -1073
  4365. mindspore/include/mindspore/ops/infer/masked_scatter.h +0 -44
  4366. mindspore/include/mindspore/ops/infer/ops_func_impl/decoder_k_v_cache.h +0 -40
  4367. mindspore/include/mindspore/ops/infer/ops_func_impl/gmm_backward.h +0 -28
  4368. mindspore/include/mindspore/ops/infer/ops_func_impl/gmm_v2_backward.h +0 -28
  4369. mindspore/include/mindspore/ops/infer/ops_func_impl/moe_token_unpermute.h +0 -36
  4370. mindspore/include/mindspore/ops/infer/ops_func_impl/prompt_k_v_cache.h +0 -40
  4371. mindspore/include/mindspore/ops/infer/ops_func_impl/select_ext.h +0 -40
  4372. mindspore/include/mindspore/ops/infer/ops_func_impl/transpose_ext.h +0 -35
  4373. mindspore/include/mindspore/ops/infer/ops_func_impl/unstack_ext.h +0 -38
  4374. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/densetodense_set_operation.h +0 -47
  4375. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/densetosparsesetoperation.h +0 -74
  4376. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/lu.h +0 -35
  4377. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/ragged_tensor_to_sparse.h +0 -92
  4378. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/ragged_tensor_to_tensor.h +0 -120
  4379. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/sample_distorted_bounding_box_ext2.h +0 -103
  4380. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/scale_and_translate.h +0 -77
  4381. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/sparse_cross.h +0 -111
  4382. mindspore/include/mindspore/ops/kernel/ascend/aicpu/aicpu_ops/cpu_kernel/ms_kernel/sparse_sparse_maximum.h +0 -61
  4383. mindspore/include/mindspore/ops/kernel/ascend/ascendc/op_host/decoder_kv_cache_tiling.h +0 -40
  4384. mindspore/include/mindspore/ops/kernel/ascend/ascendc/op_host/prompt_kv_cache_tiling.h +0 -39
  4385. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/conv3d_padding_aclnn_kernel.h +0 -77
  4386. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/moe_token_unpermute_aclnn_kernel.h +0 -45
  4387. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn/view/contiguous.h +0 -41
  4388. mindspore/include/mindspore/ops/kernel/ascend/opapi/aclnn_auto_gen/select_ext_aclnn_kernel.h +0 -41
  4389. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/select_ext.h +0 -40
  4390. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/transpose_ext.h +0 -40
  4391. mindspore/include/mindspore/ops/kernel/ascend/pyboost/auto_generate/unstack_ext.h +0 -40
  4392. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/customize_copy.h +0 -37
  4393. mindspore/include/mindspore/ops/kernel/ascend/pyboost/customize/unstack_ext.h +0 -36
  4394. mindspore/include/mindspore/ops/kernel/cpu/nnacl/arithmetic_self_parameter.h +0 -30
  4395. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/batch_to_space_base.h +0 -33
  4396. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/cast_base.h +0 -74
  4397. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/concat_base.h +0 -32
  4398. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/conv1x1_base.h +0 -32
  4399. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/conv_common_base.h +0 -41
  4400. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/crop_base.h +0 -35
  4401. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/depth_to_space_base.h +0 -31
  4402. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/fill_base.h +0 -33
  4403. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/format_transpose.h +0 -30
  4404. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/gather_d_base.h +0 -55
  4405. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/minimal_filtering_generator.h +0 -58
  4406. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/scatter_nd_binary.h +0 -37
  4407. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/space_to_depth_base.h +0 -31
  4408. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/split_with_over_lap_base.h +0 -33
  4409. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/stack_base.h +0 -30
  4410. mindspore/include/mindspore/ops/kernel/cpu/nnacl/base/transpose_base.h +0 -69
  4411. mindspore/include/mindspore/ops/kernel/cpu/nnacl/batchnorm_parameter.h +0 -29
  4412. mindspore/include/mindspore/ops/kernel/cpu/nnacl/call_parameter.h +0 -28
  4413. mindspore/include/mindspore/ops/kernel/cpu/nnacl/clip_parameter.h +0 -29
  4414. mindspore/include/mindspore/ops/kernel/cpu/nnacl/conv3d_parameter.h +0 -26
  4415. mindspore/include/mindspore/ops/kernel/cpu/nnacl/cumsum_parameter.h +0 -29
  4416. mindspore/include/mindspore/ops/kernel/cpu/nnacl/custom_gru_parameter.h +0 -31
  4417. mindspore/include/mindspore/ops/kernel/cpu/nnacl/custom_is_inf_parameter.h +0 -26
  4418. mindspore/include/mindspore/ops/kernel/cpu/nnacl/custom_masked_fill_parameter.h +0 -26
  4419. mindspore/include/mindspore/ops/kernel/cpu/nnacl/custom_parameter.h +0 -30
  4420. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fill_parameter.h +0 -25
  4421. mindspore/include/mindspore/ops/kernel/cpu/nnacl/format_transpose_parameter.h +0 -29
  4422. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/activation_fp16.h +0 -43
  4423. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/arg_min_max_fp16.h +0 -33
  4424. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/arithmetic_self_fp16.h +0 -57
  4425. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/batchnorm_fp16.h +0 -36
  4426. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/cast_fp16.h +0 -94
  4427. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/common_func_fp16.h +0 -40
  4428. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/constant_of_shape_fp16.h +0 -38
  4429. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/conv_depthwise_fp16.h +0 -65
  4430. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/conv_fp16.h +0 -60
  4431. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/crop_fp16.h +0 -26
  4432. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/custom_gru_fp16.h +0 -32
  4433. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/deconv_fp16.h +0 -36
  4434. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/deconv_winograd_fp16.h +0 -48
  4435. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/dynamic_quant_fp16.h +0 -35
  4436. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/fill_fp16.h +0 -34
  4437. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/gru_fp16.h +0 -30
  4438. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/instance_norm_fp16.h +0 -32
  4439. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/layer_norm_fp16.h +0 -33
  4440. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/log_softmax_fp16.h +0 -35
  4441. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/lstm_fp16.h +0 -54
  4442. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/matmul_fp16.h +0 -128
  4443. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/matrix_fp16.h +0 -36
  4444. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/pack_fp16.h +0 -93
  4445. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/pad_fp16.h +0 -32
  4446. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/power_fp16.h +0 -64
  4447. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/prelu_fp16.h +0 -31
  4448. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/quant_dtype_cast_fp16.h +0 -35
  4449. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/range_fp16.h +0 -27
  4450. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/reduce_fp16.h +0 -41
  4451. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/resize_fp16.h +0 -56
  4452. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/scale_fp16.h +0 -38
  4453. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/softmax_fp16.h +0 -35
  4454. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/sparse_to_dense_fp16.h +0 -31
  4455. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/splice_fp16.h +0 -31
  4456. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/topk_fp16.h +0 -35
  4457. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/transpose_fp16.h +0 -35
  4458. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/unique_fp16.h +0 -29
  4459. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/utils_fp16.h +0 -25
  4460. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/where_fp16.h +0 -32
  4461. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/winograd_transform_fp16.h +0 -57
  4462. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16/winograd_utils_fp16.h +0 -571
  4463. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/activation_grad_fp16.h +0 -44
  4464. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/arithmetic_grad.h +0 -41
  4465. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/arithmetic_self_grad.h +0 -39
  4466. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/batch_norm.h +0 -40
  4467. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/convolution_grad_filter.h +0 -33
  4468. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/convolution_grad_input.h +0 -33
  4469. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/dropout_grad.h +0 -32
  4470. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/gemm_fp16.h +0 -46
  4471. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/layernorm_grad.h +0 -32
  4472. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/pack_fp16_ext.h +0 -37
  4473. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/pooling_grad.h +0 -34
  4474. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/resize_grad.h +0 -45
  4475. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/strided_slice_grad.h +0 -31
  4476. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp16_grad/unsorted_segment_sum.h +0 -31
  4477. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/adder_fp32.h +0 -47
  4478. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/arg_min_max_fp32.h +0 -34
  4479. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/arithmetic_compare_fp32.h +0 -77
  4480. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/attention_fp32.h +0 -72
  4481. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/batchnorm_fp32.h +0 -40
  4482. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/bias_add.h +0 -34
  4483. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/common_func_fp32.h +0 -106
  4484. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/constant_of_shape_fp32.h +0 -52
  4485. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_1x1_avx_fp32.h +0 -40
  4486. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_1x1_x86_fp32.h +0 -21
  4487. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_common_fp32.h +0 -60
  4488. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_depthwise_avx_fp32.h +0 -37
  4489. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_depthwise_fp32.h +0 -148
  4490. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_im2col_avx512_fp32.h +0 -38
  4491. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_im2col_fp32.h +0 -33
  4492. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_sw.h +0 -132
  4493. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_sw_arm64_fp32.h +0 -33
  4494. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_sw_avx_fp32.h +0 -42
  4495. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/conv_winograd_fp32.h +0 -48
  4496. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/crop_fp32.h +0 -34
  4497. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/cumsum_fp32.h +0 -32
  4498. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/custom_gru_fp32.h +0 -32
  4499. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/deconv_fp32.h +0 -37
  4500. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/deconv_winograd_fp32.h +0 -46
  4501. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/detection_post_process_fp32.h +0 -60
  4502. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/embedding_lookup_fp32.h +0 -43
  4503. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/group_norm_fp32.h +0 -35
  4504. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/gru_fp32.h +0 -30
  4505. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/instance_norm_fp32.h +0 -50
  4506. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/invert_permutation_fp32.h +0 -30
  4507. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/l2_norm_fp32.h +0 -34
  4508. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/layer_norm_fp32.h +0 -33
  4509. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/local_response_norm_fp32.h +0 -26
  4510. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/log_softmax_fp32.h +0 -31
  4511. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/matmul_avx512_mask_fp32.h +0 -209
  4512. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/non_max_suppression_fp32.h +0 -25
  4513. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/online_fusion/cast_gather_reduce_fp32.h +0 -37
  4514. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/online_fusion/reduce_concat_fp32.h +0 -34
  4515. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/online_fusion/split_reduce_concat_fp32.h +0 -33
  4516. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/pad_fp32.h +0 -40
  4517. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/prelu_fp32.h +0 -31
  4518. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/prior_box_fp32.h +0 -41
  4519. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/range_fp32.h +0 -34
  4520. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/rank_fp32.h +0 -32
  4521. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/resize_fp32.h +0 -74
  4522. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/reverse_fp32.h +0 -31
  4523. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/reverse_sequence_fp32.h +0 -33
  4524. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/scale_fp32.h +0 -35
  4525. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/sparse_to_dense_fp32.h +0 -31
  4526. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/splice_fp32.h +0 -26
  4527. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/transpose_fp32.h +0 -35
  4528. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/transpose_server_fp32.h +0 -40
  4529. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/triu_tril_fp32.h +0 -42
  4530. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/unique_fp32.h +0 -36
  4531. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/where_fp32.h +0 -32
  4532. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/winograd_avx.h +0 -299
  4533. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/winograd_transform.h +0 -51
  4534. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32/winograd_utils.h +0 -373
  4535. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/batch_norm_grad.h +0 -37
  4536. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/batch_norm_parameter.h +0 -28
  4537. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/binary_cross_entropy_grad.h +0 -36
  4538. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/convolution_grad_filter.h +0 -32
  4539. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/convolution_grad_input.h +0 -32
  4540. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/dropout_parameter.h +0 -27
  4541. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/layernorm_grad.h +0 -29
  4542. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/nllloss_grad_fp32.h +0 -31
  4543. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/optimizer.h +0 -40
  4544. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/pack_ext.h +0 -39
  4545. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/pooling_grad.h +0 -34
  4546. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/reduce_grad.h +0 -30
  4547. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/smooth_l1_loss.h +0 -27
  4548. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/softmax_cross_entropy_with_logits.h +0 -33
  4549. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_grad/softmax_grad_utils.h +0 -33
  4550. mindspore/include/mindspore/ops/kernel/cpu/nnacl/fp32_sparse/matmul_sparse_x1_fp32.h +0 -41
  4551. mindspore/include/mindspore/ops/kernel/cpu/nnacl/gather_nd_parameter.h +0 -26
  4552. mindspore/include/mindspore/ops/kernel/cpu/nnacl/gelu_parameter.h +0 -28
  4553. mindspore/include/mindspore/ops/kernel/cpu/nnacl/grid_sampler_parameter.h +0 -28
  4554. mindspore/include/mindspore/ops/kernel/cpu/nnacl/group_norm_parameter.h +0 -41
  4555. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/cast_gather_reduce_infer.h +0 -31
  4556. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensor_array_infer.h +0 -31
  4557. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensor_array_read_infer.h +0 -31
  4558. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensor_array_write_infer.h +0 -31
  4559. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensorlist_fromtensor_infer.h +0 -31
  4560. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensorlist_getitem_infer.h +0 -32
  4561. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensorlist_reserve_infer.h +0 -31
  4562. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensorlist_setitem_infer.h +0 -31
  4563. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/control/tensorlist_stack_infer.h +0 -31
  4564. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/conv3d_infer.h +0 -32
  4565. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/custom_is_inf_infer.h +0 -31
  4566. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/custom_masked_fill_infer.h +0 -31
  4567. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/custom_tensor_scatter_max_infer.h +0 -31
  4568. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/format_transpose_infer.h +0 -31
  4569. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/gather_d_infer.h +0 -33
  4570. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/grid_sampler_infer.h +0 -32
  4571. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/group_norm_infer.h +0 -31
  4572. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/reduce_concat_infer.h +0 -31
  4573. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/sparse_fill_empty_rows_infer.h +0 -31
  4574. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/sparse_reshape_infer.h +0 -31
  4575. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/sparse_segment_sum_infer.h +0 -31
  4576. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/split_reduce_concat_infer.h +0 -31
  4577. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/string/custom_extract_features_infer.h +0 -31
  4578. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/string/custom_normalize_infer.h +0 -32
  4579. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/string/custom_predict_infer.h +0 -36
  4580. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/string/hashtable_lookup_infer.h +0 -31
  4581. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/string/lsh_projection_infer.h +0 -32
  4582. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/string/skip_gram_infer.h +0 -31
  4583. mindspore/include/mindspore/ops/kernel/cpu/nnacl/infer/triu_tril_infer.h +0 -32
  4584. mindspore/include/mindspore/ops/kernel/cpu/nnacl/instance_norm_parameter.h +0 -32
  4585. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/add_int8.h +0 -70
  4586. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/arg_min_max_int8.h +0 -41
  4587. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/arithmetic_int8.h +0 -51
  4588. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/arithmetic_self_int8.h +0 -59
  4589. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/batch_to_space_int8.h +0 -33
  4590. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/batchnorm_int8.h +0 -34
  4591. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/common_func_int8.h +0 -95
  4592. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/concat_int8.h +0 -33
  4593. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/conv1x1_int8.h +0 -46
  4594. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/conv3x3_int8.h +0 -48
  4595. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/conv_depthwise_int8.h +0 -49
  4596. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/conv_int8.h +0 -44
  4597. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/crop_int8.h +0 -31
  4598. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/deconv_int8.h +0 -46
  4599. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/depth_to_space_int8.h +0 -32
  4600. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/div_int8.h +0 -37
  4601. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/dynamic_gather_int8.h +0 -40
  4602. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/dynamic_matmul_int8.h +0 -74
  4603. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/dynamic_quant_int8.h +0 -34
  4604. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/gatherNd_int8.h +0 -32
  4605. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/gather_int8.h +0 -35
  4606. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/hswish_int8.h +0 -43
  4607. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/l2_norm_int8.h +0 -32
  4608. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/layer_norm_int8.h +0 -35
  4609. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/leaky_relu_int8.h +0 -31
  4610. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/matmul_int8.h +0 -93
  4611. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/mul_int8.h +0 -39
  4612. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/pack_int8.h +0 -56
  4613. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/pad_int8.h +0 -35
  4614. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/pooling_int8.h +0 -50
  4615. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/power_int8.h +0 -33
  4616. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/quant_dtype_cast_int8.h +0 -56
  4617. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/reduce_int8.h +0 -70
  4618. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/relux_int8.h +0 -43
  4619. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/reshape_int8.h +0 -32
  4620. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/resize_int8.h +0 -50
  4621. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/scale_int8.h +0 -35
  4622. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/sigmoid_int8.h +0 -32
  4623. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/slice_int8.h +0 -35
  4624. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/softmax_int8.h +0 -35
  4625. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/space_to_batch_int8.h +0 -32
  4626. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/split_int8.h +0 -33
  4627. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/squeeze_int8.h +0 -32
  4628. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/sub_int8.h +0 -32
  4629. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/tanh_int8.h +0 -43
  4630. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/topk_int8.h +0 -36
  4631. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/transpose_int8.h +0 -36
  4632. mindspore/include/mindspore/ops/kernel/cpu/nnacl/int8/unsqueeze_int8.h +0 -33
  4633. mindspore/include/mindspore/ops/kernel/cpu/nnacl/intrinsics/avx/common_utils.h +0 -157
  4634. mindspore/include/mindspore/ops/kernel/cpu/nnacl/intrinsics/sse/sse_common.h +0 -390
  4635. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/activation.h +0 -25
  4636. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/addn.h +0 -35
  4637. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/arg_min_max.h +0 -63
  4638. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/arithmetic_compare.h +0 -26
  4639. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/arithmetic_self.h +0 -48
  4640. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/batch_norm.h +0 -38
  4641. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/batch_to_space.h +0 -33
  4642. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/biasadd.h +0 -25
  4643. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/cast.h +0 -32
  4644. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/clip.h +0 -34
  4645. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/concat.h +0 -52
  4646. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_1x1.h +0 -42
  4647. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_base.h +0 -63
  4648. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_delegate.h +0 -39
  4649. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_depthwise.h +0 -36
  4650. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_depthwise_3x3.h +0 -37
  4651. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_depthwise_indirect.h +0 -39
  4652. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_depthwise_sw.h +0 -36
  4653. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_depthwise_sw_avx.h +0 -40
  4654. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_im2col.h +0 -28
  4655. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_im2col_arm32.h +0 -30
  4656. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_im2col_arm64.h +0 -29
  4657. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_im2col_avx.h +0 -29
  4658. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_im2col_avx512.h +0 -29
  4659. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_im2col_base.h +0 -52
  4660. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_im2col_sse.h +0 -29
  4661. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_slidewindow.h +0 -46
  4662. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_sw_1x1.h +0 -36
  4663. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_sw_arm64.h +0 -28
  4664. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_sw_avx.h +0 -28
  4665. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_winograd.h +0 -32
  4666. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_winograd_arm32.h +0 -30
  4667. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_winograd_arm64.h +0 -30
  4668. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_winograd_avx.h +0 -30
  4669. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_winograd_base.h +0 -65
  4670. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/convolution_winograd_sse.h +0 -30
  4671. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/crop.h +0 -31
  4672. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/crop_and_resize.h +0 -41
  4673. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/deconvolution.h +0 -39
  4674. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/deconvolution_depthwise.h +0 -34
  4675. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/deconvolution_winograd.h +0 -52
  4676. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/depth_to_space.h +0 -42
  4677. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/f16/arithmetic_compare_f16.h +0 -26
  4678. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/f16/arithmetic_f16.h +0 -42
  4679. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/f16/concat_f16.h +0 -25
  4680. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/f16/reduce_f16.h +0 -27
  4681. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/f16/stack_f16.h +0 -32
  4682. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/fill.h +0 -36
  4683. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/fullconnection.h +0 -25
  4684. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/fused_batch_norm.h +0 -37
  4685. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/gather.h +0 -46
  4686. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/gather_d.h +0 -25
  4687. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/gather_nd.h +0 -35
  4688. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/group_convolution.h +0 -49
  4689. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/group_norm.h +0 -31
  4690. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/init_vs_kernels.h +0 -20
  4691. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/layer_norm.h +0 -49
  4692. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/local_response_norm.h +0 -30
  4693. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/log_softmax.h +0 -31
  4694. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul.h +0 -25
  4695. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul_arm32.h +0 -28
  4696. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul_arm64.h +0 -28
  4697. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul_avx.h +0 -28
  4698. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul_avx512.h +0 -27
  4699. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul_base.h +0 -35
  4700. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul_create.h +0 -24
  4701. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/matmul_sse.h +0 -27
  4702. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/non_max_suppression.h +0 -34
  4703. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/non_zero.h +0 -30
  4704. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/ones_like.h +0 -31
  4705. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/pad.h +0 -51
  4706. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/pow.h +0 -31
  4707. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/prelu.h +0 -34
  4708. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/prior_box.h +0 -36
  4709. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/range.h +0 -31
  4710. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/rank.h +0 -31
  4711. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/reduce.h +0 -72
  4712. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/reverse.h +0 -36
  4713. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/scale.h +0 -41
  4714. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/shape.h +0 -31
  4715. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/size.h +0 -30
  4716. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/softmax.h +0 -39
  4717. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/splice.h +0 -30
  4718. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/stack.h +0 -41
  4719. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/transpose.h +0 -49
  4720. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/tril.h +0 -32
  4721. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/triu.h +0 -32
  4722. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/unique.h +0 -32
  4723. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/where.h +0 -44
  4724. mindspore/include/mindspore/ops/kernel/cpu/nnacl/kernel/zeros_like.h +0 -31
  4725. mindspore/include/mindspore/ops/kernel/cpu/nnacl/l2_norm_parameter.h +0 -41
  4726. mindspore/include/mindspore/ops/kernel/cpu/nnacl/local_response_norm_parameter.h +0 -31
  4727. mindspore/include/mindspore/ops/kernel/cpu/nnacl/lsh_projection_parameter.h +0 -35
  4728. mindspore/include/mindspore/ops/kernel/cpu/nnacl/mul_parameter.h +0 -32
  4729. mindspore/include/mindspore/ops/kernel/cpu/nnacl/non_max_suppression_parameter.h +0 -28
  4730. mindspore/include/mindspore/ops/kernel/cpu/nnacl/pack.h +0 -23
  4731. mindspore/include/mindspore/ops/kernel/cpu/nnacl/partial_fusion_parameter.h +0 -29
  4732. mindspore/include/mindspore/ops/kernel/cpu/nnacl/predict_parameter.h +0 -32
  4733. mindspore/include/mindspore/ops/kernel/cpu/nnacl/prelu_parameter.h +0 -26
  4734. mindspore/include/mindspore/ops/kernel/cpu/nnacl/random_parameter.h +0 -34
  4735. mindspore/include/mindspore/ops/kernel/cpu/nnacl/reverse_parameter.h +0 -30
  4736. mindspore/include/mindspore/ops/kernel/cpu/nnacl/reverse_sequence_parameter.h +0 -45
  4737. mindspore/include/mindspore/ops/kernel/cpu/nnacl/scale_parameter.h +0 -39
  4738. mindspore/include/mindspore/ops/kernel/cpu/nnacl/scatter_elements_parameter.h +0 -25
  4739. mindspore/include/mindspore/ops/kernel/cpu/nnacl/scatter_nd_parameter.h +0 -29
  4740. mindspore/include/mindspore/ops/kernel/cpu/nnacl/sigmoid_parameter.h +0 -41
  4741. mindspore/include/mindspore/ops/kernel/cpu/nnacl/skip_gram_parameter.h +0 -30
  4742. mindspore/include/mindspore/ops/kernel/cpu/nnacl/sparse_to_dense_parameter.h +0 -32
  4743. mindspore/include/mindspore/ops/kernel/cpu/nnacl/tensor_array_parameter.h +0 -29
  4744. mindspore/include/mindspore/ops/kernel/cpu/nnacl/triu_tril_parameter.h +0 -31
  4745. mindspore/include/mindspore/ops/kernel/cpu/nnacl/upsample_parameter.h +0 -29
  4746. mindspore/include/mindspore/ops/kernel/cpu/nnacl/where_parameter.h +0 -25
  4747. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gmm_backward.h +0 -38
  4748. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/gmm_v2_backward.h +0 -38
  4749. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/select_ext.h +0 -38
  4750. mindspore/include/mindspore/ops/kernel/cpu/pyboost/auto_generate/transpose_ext.h +0 -38
  4751. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gmm_backward.h +0 -38
  4752. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/gmm_v2_backward.h +0 -38
  4753. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/select_ext.h +0 -38
  4754. mindspore/include/mindspore/ops/kernel/gpu/pyboost/auto_generate/transpose_ext.h +0 -38
  4755. mindspore/include/mindspore/ops/ops_utils/ms_extension.h +0 -39
  4756. mindspore/include/mindspore/ops/view/select_ext_strides_calc.h +0 -30
  4757. mindspore/include/mindspore/ops/view/transpose_ext_strides_calc.h +0 -32
  4758. mindspore/include/mindspore/ops/view/unstack_ext_strides_calc.h +0 -28
  4759. mindspore/include/third_party/securec/src/secinput.h +0 -181
  4760. mindspore/include/third_party/securec/src/securecutil.h +0 -574
  4761. mindspore/include/third_party/securec/src/secureprintoutput.h +0 -153
  4762. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend310/aic-ascend310-ops-info.json +0 -123
  4763. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend310p/aic-ascend310p-ops-info.json +0 -152
  4764. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +0 -2048
  4765. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend910_93/aic-ascend910_93-ops-info.json +0 -2048
  4766. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/config/ascend910b/aic-ascend910b-ops-info.json +0 -2048
  4767. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/add_dsl.py +0 -46
  4768. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/add_tik.py +0 -51
  4769. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/build_tbe_kernel.py +0 -529
  4770. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/compiler.py +0 -56
  4771. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/custom.py +0 -1109
  4772. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/get_file_path.py +0 -36
  4773. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/kv_cache_mgr.py +0 -241
  4774. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/matmul_tik.py +0 -212
  4775. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/ai_core/tbe/custom_aicore_ops_impl/tbe_topi.py +0 -556
  4776. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/vector_core/tbe/custom_aicore_ops_impl/add_dsl.py +0 -46
  4777. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/vector_core/tbe/custom_aicore_ops_impl/add_tik.py +0 -51
  4778. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/vector_core/tbe/custom_aicore_ops_impl/kv_cache_mgr.py +0 -241
  4779. mindspore/lib/plugin/ascend/custom_aicore_ops/op_impl/vector_core/tbe/custom_aicore_ops_impl/matmul_tik.py +0 -212
  4780. mindspore/lib/plugin/ascend/custom_aicore_ops/op_proto/libop_proto.so +0 -0
  4781. mindspore/lib/plugin/ascend/custom_ascendc_910/framework/npu_supported_ops.json +0 -10
  4782. mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/include/aclnn_decoder_kv_cache.h +0 -59
  4783. mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/include/aclnn_prompt_kv_cache.h +0 -59
  4784. mindspore/lib/plugin/ascend/custom_ascendc_910/op_api/lib/libcust_opapi.so +0 -0
  4785. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/config/ascend910/aic-ascend910-ops-info.json +0 -182
  4786. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/decoder_kv_cache.cpp +0 -192
  4787. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/decoder_kv_cache.py +0 -215
  4788. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/prompt_kv_cache.cpp +0 -274
  4789. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/custom_ascendc_910_impl/dynamic/prompt_kv_cache.py +0 -215
  4790. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.json +0 -158
  4791. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.o +0 -0
  4792. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.json +0 -158
  4793. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.o +0 -0
  4794. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.json +0 -158
  4795. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.o +0 -0
  4796. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.json +0 -158
  4797. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.o +0 -0
  4798. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.json +0 -158
  4799. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.o +0 -0
  4800. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.json +0 -158
  4801. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.o +0 -0
  4802. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.json +0 -158
  4803. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.o +0 -0
  4804. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.json +0 -158
  4805. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.o +0 -0
  4806. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.json +0 -167
  4807. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.o +0 -0
  4808. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.json +0 -167
  4809. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.o +0 -0
  4810. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.json +0 -167
  4811. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.o +0 -0
  4812. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.json +0 -167
  4813. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.o +0 -0
  4814. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.json +0 -167
  4815. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.o +0 -0
  4816. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.json +0 -167
  4817. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.o +0 -0
  4818. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.json +0 -167
  4819. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.o +0 -0
  4820. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.json +0 -167
  4821. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/ascend910/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.o +0 -0
  4822. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/config/ascend910/binary_info_config.json +0 -302
  4823. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/config/ascend910/decoder_kv_cache.json +0 -892
  4824. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/kernel/config/ascend910/prompt_kv_cache.json +0 -892
  4825. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/lib/linux/aarch64/libcust_opmaster_rt2.0.so +0 -0
  4826. mindspore/lib/plugin/ascend/custom_ascendc_910/op_impl/ai_core/tbe/op_tiling/liboptiling.so +0 -0
  4827. mindspore/lib/plugin/ascend/custom_ascendc_910/op_proto/inc/op_proto.h +0 -33
  4828. mindspore/lib/plugin/ascend/custom_ascendc_910/op_proto/lib/linux/aarch64/libcust_opsproto_rt2.0.so +0 -0
  4829. mindspore/lib/plugin/ascend/custom_ascendc_910/version.info +0 -1
  4830. mindspore/lib/plugin/ascend/custom_ascendc_910b/framework/npu_supported_ops.json +0 -14
  4831. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/include/aclnn_decoder_kv_cache.h +0 -59
  4832. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_api/include/aclnn_prompt_kv_cache.h +0 -59
  4833. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/decoder_kv_cache.cpp +0 -192
  4834. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/decoder_kv_cache.py +0 -215
  4835. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/prompt_kv_cache.cpp +0 -274
  4836. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/custom_ascendc_910b_impl/dynamic/prompt_kv_cache.py +0 -215
  4837. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.json +0 -158
  4838. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.o +0 -0
  4839. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.json +0 -158
  4840. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.o +0 -0
  4841. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.json +0 -158
  4842. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.o +0 -0
  4843. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.json +0 -158
  4844. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.o +0 -0
  4845. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.json +0 -158
  4846. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.o +0 -0
  4847. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.json +0 -158
  4848. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.o +0 -0
  4849. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.json +0 -158
  4850. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.o +0 -0
  4851. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.json +0 -158
  4852. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.o +0 -0
  4853. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.json +0 -167
  4854. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.o +0 -0
  4855. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.json +0 -167
  4856. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.o +0 -0
  4857. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.json +0 -167
  4858. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.o +0 -0
  4859. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.json +0 -167
  4860. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.o +0 -0
  4861. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.json +0 -167
  4862. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.o +0 -0
  4863. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.json +0 -167
  4864. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.o +0 -0
  4865. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.json +0 -167
  4866. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.o +0 -0
  4867. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.json +0 -167
  4868. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend310p/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.o +0 -0
  4869. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.json +0 -156
  4870. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.o +0 -0
  4871. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.json +0 -156
  4872. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.o +0 -0
  4873. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.json +0 -156
  4874. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.o +0 -0
  4875. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.json +0 -156
  4876. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.o +0 -0
  4877. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.json +0 -156
  4878. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.o +0 -0
  4879. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.json +0 -156
  4880. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.o +0 -0
  4881. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.json +0 -156
  4882. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.o +0 -0
  4883. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.json +0 -156
  4884. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.o +0 -0
  4885. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.json +0 -165
  4886. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.o +0 -0
  4887. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.json +0 -165
  4888. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.o +0 -0
  4889. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.json +0 -165
  4890. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.o +0 -0
  4891. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.json +0 -165
  4892. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.o +0 -0
  4893. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.json +0 -165
  4894. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.o +0 -0
  4895. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.json +0 -165
  4896. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.o +0 -0
  4897. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.json +0 -165
  4898. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.o +0 -0
  4899. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.json +0 -165
  4900. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910_93/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.o +0 -0
  4901. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.json +0 -156
  4902. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_0d5520cc587ad44ce634bf3fbcffc272.o +0 -0
  4903. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.json +0 -156
  4904. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_20390d30b3c4c0d23167ccca6c030c2b.o +0 -0
  4905. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.json +0 -156
  4906. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_2d151f0b1d2db51faa2968d5b67544e2.o +0 -0
  4907. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.json +0 -156
  4908. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_561690ec17cc1def3d2fcf68c1b07b56.o +0 -0
  4909. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.json +0 -156
  4910. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_570f9aaa99e5e773b3dd0a33784363f4.o +0 -0
  4911. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.json +0 -156
  4912. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_59668a0f0764afb98fda8ab9e84126f1.o +0 -0
  4913. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.json +0 -156
  4914. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_91d9833e4792b70b670e4e2b916abd86.o +0 -0
  4915. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.json +0 -156
  4916. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/decoder_kv_cache/DecoderKvCache_c74cdc5fef094383401856f8519504af.o +0 -0
  4917. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.json +0 -165
  4918. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_0515c7b1a4cd614449e38c5e9a7e3f8d.o +0 -0
  4919. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.json +0 -165
  4920. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_09f22d898d6358c91e7c4fc48bac48e7.o +0 -0
  4921. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.json +0 -165
  4922. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_0cb9a6f894b925250227136e5aab7061.o +0 -0
  4923. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.json +0 -165
  4924. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_2fa8702ffd7ca85e9e194f62644415d5.o +0 -0
  4925. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.json +0 -165
  4926. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_570b62f187dfd439b64613d881deedb7.o +0 -0
  4927. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.json +0 -165
  4928. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_585218c11411ff84709b9e725b66c435.o +0 -0
  4929. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.json +0 -165
  4930. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_5c9365ccde170b358c5b126d69dae13e.o +0 -0
  4931. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.json +0 -165
  4932. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/ascend910b/prompt_kv_cache/PromptKvCache_6d97c45b7c43bc16fcff8baa5dacac4e.o +0 -0
  4933. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend310p/decoder_kv_cache.json +0 -892
  4934. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend310p/prompt_kv_cache.json +0 -892
  4935. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/decoder_kv_cache.json +0 -892
  4936. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910_93/prompt_kv_cache.json +0 -892
  4937. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910b/decoder_kv_cache.json +0 -892
  4938. mindspore/lib/plugin/ascend/custom_ascendc_910b/op_impl/ai_core/tbe/kernel/config/ascend910b/prompt_kv_cache.json +0 -892
  4939. mindspore/profiler/common/validator/__init__.py +0 -14
  4940. mindspore/profiler/common/validator/validate_path.py +0 -84
  4941. mindspore/profiler/parser/__init__.py +0 -14
  4942. mindspore/profiler/parser/aicpu_data_parser.py +0 -272
  4943. mindspore/profiler/parser/ascend_analysis/__init__.py +0 -14
  4944. mindspore/profiler/parser/ascend_analysis/constant.py +0 -71
  4945. mindspore/profiler/parser/ascend_analysis/file_manager.py +0 -180
  4946. mindspore/profiler/parser/ascend_analysis/function_event.py +0 -185
  4947. mindspore/profiler/parser/ascend_analysis/fwk_cann_parser.py +0 -136
  4948. mindspore/profiler/parser/ascend_analysis/fwk_file_parser.py +0 -131
  4949. mindspore/profiler/parser/ascend_analysis/msprof_timeline_parser.py +0 -104
  4950. mindspore/profiler/parser/ascend_analysis/path_manager.py +0 -313
  4951. mindspore/profiler/parser/ascend_analysis/profiler_info_parser.py +0 -123
  4952. mindspore/profiler/parser/ascend_analysis/tlv_decoder.py +0 -86
  4953. mindspore/profiler/parser/ascend_analysis/trace_event_manager.py +0 -75
  4954. mindspore/profiler/parser/ascend_cluster_generator.py +0 -116
  4955. mindspore/profiler/parser/ascend_communicate_generator.py +0 -314
  4956. mindspore/profiler/parser/ascend_flops_generator.py +0 -116
  4957. mindspore/profiler/parser/ascend_fpbp_generator.py +0 -82
  4958. mindspore/profiler/parser/ascend_hccl_generator.py +0 -271
  4959. mindspore/profiler/parser/ascend_integrate_generator.py +0 -42
  4960. mindspore/profiler/parser/ascend_memory_generator.py +0 -185
  4961. mindspore/profiler/parser/ascend_msprof_exporter.py +0 -282
  4962. mindspore/profiler/parser/ascend_msprof_generator.py +0 -187
  4963. mindspore/profiler/parser/ascend_op_generator.py +0 -334
  4964. mindspore/profiler/parser/ascend_steptrace_generator.py +0 -94
  4965. mindspore/profiler/parser/ascend_timeline_generator.py +0 -545
  4966. mindspore/profiler/parser/base_timeline_generator.py +0 -483
  4967. mindspore/profiler/parser/container.py +0 -229
  4968. mindspore/profiler/parser/cpu_gpu_timeline_generator.py +0 -697
  4969. mindspore/profiler/parser/flops_parser.py +0 -531
  4970. mindspore/profiler/parser/framework_enum.py +0 -111
  4971. mindspore/profiler/parser/framework_parser.py +0 -464
  4972. mindspore/profiler/parser/framework_struct.py +0 -61
  4973. mindspore/profiler/parser/gpu_analysis/__init__.py +0 -14
  4974. mindspore/profiler/parser/gpu_analysis/function_event.py +0 -44
  4975. mindspore/profiler/parser/gpu_analysis/fwk_file_parser.py +0 -89
  4976. mindspore/profiler/parser/gpu_analysis/profiler_info_parser.py +0 -72
  4977. mindspore/profiler/parser/hccl_parser.py +0 -573
  4978. mindspore/profiler/parser/hwts_log_parser.py +0 -122
  4979. mindspore/profiler/parser/integrator.py +0 -526
  4980. mindspore/profiler/parser/memory_usage_parser.py +0 -277
  4981. mindspore/profiler/parser/minddata_analyzer.py +0 -800
  4982. mindspore/profiler/parser/minddata_parser.py +0 -186
  4983. mindspore/profiler/parser/minddata_pipeline_parser.py +0 -299
  4984. mindspore/profiler/parser/op_intermediate_parser.py +0 -149
  4985. mindspore/profiler/parser/optime_parser.py +0 -250
  4986. mindspore/profiler/parser/profiler_info.py +0 -213
  4987. mindspore/profiler/parser/step_trace_parser.py +0 -666
  4988. mindspore/utils/hooks.py +0 -81
  4989. mindspore-2.6.0rc1.dist-info/METADATA +0 -367
  4990. mindspore-2.6.0rc1.dist-info/RECORD +0 -12184
  4991. mindspore-2.6.0rc1.dist-info/WHEEL +0 -5
  4992. /mindspore/common/{_auto_dynamic.py → dynamic_shape/_auto_dynamic.py} +0 -0
  4993. /mindspore/include/mindspore/ops/kernel/ascend/ascendc/{op_host → all_finite/op_host}/all_finite_tiling.h +0 -0
  4994. /mindspore/include/third_party/{securec/include → include}/securec.h +0 -0
  4995. /mindspore/include/third_party/{securec/include → include}/securectype.h +0 -0
  4996. {mindspore-2.6.0rc1.dist-info → mindspore-2.7.0.dist-info}/entry_points.txt +0 -0
  4997. {mindspore-2.6.0rc1.dist-info → mindspore-2.7.0.dist-info}/top_level.txt +0 -0
@@ -17,95 +17,128 @@ from mindspore.common import dtype as mstype
17
17
  from mindspore.ops.auto_generate.pyboost_inner_prim import *
18
18
 
19
19
 
20
- def sub_tensor_(input, other, alpha=1):
20
+ def flatten(input, start_dim=0, end_dim=-1):
21
21
  r"""
22
- None
22
+ Flatten a tensor along dimensions from `start_dim` to `end_dim`.
23
+
24
+ Args:
25
+ input (Tensor): The input Tensor.
26
+ start_dim (int, optional): The first dimension to flatten. Default: ``0`` .
27
+ end_dim (int, optional): The last dimension to flatten. Default: ``-1`` .
28
+
29
+ Returns:
30
+ Tensor. If no dimensions are flattened, returns the original `input`, otherwise return the flattened Tensor.
31
+ If `input` is a 0-dimensional Tensor, a 1-dimensional Tensor will be returned.
32
+
33
+ Raises:
34
+ TypeError: If `input` is not a Tensor.
35
+ TypeError: If `start_dim` or `end_dim` is not int.
36
+ ValueError: If `start_dim` is greater than `end_dim` after canonicalized.
37
+ ValueError: If `start_dim` or `end_dim` is not in range of [-input.dim, input.dim-1].
38
+
39
+ Supported Platforms:
40
+ ``Ascend`` ``GPU`` ``CPU``
41
+
42
+ Examples:
43
+ >>> import mindspore
44
+ >>> import numpy as np
45
+ >>> from mindspore import Tensor, ops
46
+ >>> input_x = Tensor(np.ones(shape=[1, 2, 3, 4]), mindspore.float32)
47
+ >>> output = ops.auto_generate.flatten_ext(input_x)
48
+ >>> print(output.shape)
49
+ (24,)
23
50
  """
24
- return sub_tensor_impl(input, other, alpha)
51
+ return flatten_impl(input, start_dim, end_dim)
25
52
 
26
53
 
27
- def atan(input):
54
+ def cumsum(input, dim, dtype=None):
28
55
  r"""
29
- Computes the trigonometric inverse tangent of the input element-wise.
56
+ Computes the cumulative sum of input Tensor along `dim`.
30
57
 
31
58
  .. math::
32
59
 
33
- out_i = \tan^{-1}(input_i)
60
+ y_i = x_1 + x_2 + x_3 + ... + x_i
34
61
 
35
62
  Args:
36
- input (Tensor): The shape of tensor is
37
- :math:`(N,*)` where :math:`*` means, any number of additional dimensions.
63
+ input (Tensor): The input Tensor.
64
+ dim (int): Dim along which the cumulative sum is computed.
65
+ dtype (:class:`mindspore.dtype`, optional): The desired dtype of returned Tensor. If specified,
66
+ the input Tensor will be cast to `dtype` before the computation. This is useful for preventing overflows.
67
+ If not specified, stay the same as original Tensor. Default: ``None`` .
38
68
 
39
69
  Returns:
40
- Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
70
+ Tensor, the shape of the output Tensor is consistent with the input Tensor's.
41
71
 
42
72
  Raises:
43
73
  TypeError: If `input` is not a Tensor.
74
+ ValueError: If the `dim` is out of range.
44
75
 
45
76
  Supported Platforms:
46
- ``Ascend`` ``GPU`` ``CPU``
77
+ ``Ascend``
47
78
 
48
79
  Examples:
49
- >>> import mindspore
50
80
  >>> import numpy as np
51
- >>> from mindspore import Tensor, ops
52
- >>> input = Tensor(np.array([1.0, 0.0]), mindspore.float32)
53
- >>> output = ops.atan_ext(input)
54
- >>> print(output)
55
- [0.7853982 0. ]
81
+ >>> from mindspore import Tensor
82
+ >>> import mindspore.ops as ops
83
+ >>> x = Tensor(np.array([[3, 4, 6, 10], [1, 6, 7, 9], [4, 3, 8, 7], [1, 3, 7, 9]]).astype(np.float32))
84
+ >>> # case 1: along the dim 0
85
+ >>> y = ops.auto_generate.cumsum_ext(x, 0)
86
+ >>> print(y)
87
+ [[ 3. 4. 6. 10.]
88
+ [ 4. 10. 13. 19.]
89
+ [ 8. 13. 21. 26.]
90
+ [ 9. 16. 28. 35.]]
91
+ >>> # case 2: along the dim 1
92
+ >>> y = ops.auto_generate.cumsum_ext(x, 1)
93
+ >>> print(y)
94
+ [[ 3. 7. 13. 23.]
95
+ [ 1. 7. 14. 23.]
96
+ [ 4. 7. 15. 22.]
97
+ [ 1. 4. 11. 20.]]
56
98
  """
57
- return atan_impl(input)
99
+ return cumsum_impl(input, dim, dtype)
58
100
 
59
101
 
60
- def max_unpool2d(input, indices, kernel_size, stride=None, padding=0, output_size=None):
102
+ def softplus(input, beta=1, threshold=20):
61
103
  r"""
62
- Computes the inverse of `max_pool2d`.
104
+ Applies softplus function to `input` element-wise.
63
105
 
64
- `max_unpool2d` keeps the maximal value and set all position of non-maximal values to zero. Typically the input is of shape :math:`(N, C, H_{in}, W_{in})` or :math:`(C, H_{in}, W_{in})`, and the output is of shape :math:`(N, C, H_{out}, W_{out})` or :math:`(C, H_{out}, W_{out})`. The operation is as follows.
106
+ The softplus function is shown as follows, x is the element of `input` :
65
107
 
66
108
  .. math::
67
- \begin{array}{ll} \\
68
- H_{out} = (H_{in} - 1) \times stride[0] - 2 \times padding[0] + kernel\_size[0] \\
69
- W_{out} = (W_{in} - 1) \times stride[1] - 2 \times padding[1] + kernel\_size[1] \\
70
- \end{array}
71
109
 
72
- .. warning::
73
- This is an experimental API that is subject to change or deletion.
110
+ \text{output} = \frac{1}{beta}\log(1 + \exp(\text{beta * x}))
111
+
112
+ where :math:`input * beta > threshold`, the implementation converts to the linear function to ensure numerical stability.
74
113
 
75
114
  Args:
76
- input (Tensor): The input Tensor to invert. Tensor of shape :math:`(N, C, H_{in}, W_{in})` or :math:`(C, H_{in}, W_{in})`.
77
- indices (Tensor): Max values' index represented by the indices. Tensor of shape must be same with input 'input'. Values of indices must belong to :math:`[0, H_{in} \times W_{in} - 1]`. Data type must be in int32 or int64.
78
- kernel_size (Union[int, tuple[int]]): The size of kernel used to take the maximum value, an int number that represents height and width of the kernel, or a tuple of two int numbers that represent height and width respectively.
79
- stride (Union[int, tuple[int]], optional): The distance of kernel moving, an int number that represents the height and width of movement are both stride, or a tuple of two int numbers that represent height and width of movement respectively. Default: ``None`` , which indicates the moving step is `kernel_size` .
80
- padding (Union[int, tuple[int]], optional): The pad value to be filled. Default: ``0`` . If `padding` is an integer, the paddings of height and width are the same, equal to padding. If `padding` is a tuple of two integers, the padding of height and width equal to padding[0] and padding[1] correspondingly.
81
- output_size (tuple[int], optional): The target output size. Default: ``None`` . If output_size == (), then the shape of output computed by `kernel_size`, `stride` and `padding`. If output_size != (), then output_size must be :math:`(N, C, H, W)` , :math:`(C, H, W)` or :math:`(H, W)` and output_size must belong to :math:`[(N, C, H_{out} - stride[0], W_{out} - stride[1]), (N, C, H_{out} + stride[0], W_{out} + stride[1])]`.
115
+ input (Tensor): Tensor of any dimension. Supported dtypes:
116
+
117
+ - Ascend: float16, float32, bfloat16.
118
+ beta (number.Number, optional): Scaling parameters in the softplus function. Default: ``1`` .
119
+ threshold (number.Number, optional): For numerical stability, the softplus function is converted
120
+ to a threshold parameter of a linear function. Default: ``20`` .
82
121
 
83
122
  Returns:
84
- Tensor, with shape :math:`(N, C, H_{out}, W_{out})` or :math:`(C, H_{out}, W_{out})`, with the same data type with `input`.
123
+ Tensor, with the same type and shape as the input.
85
124
 
86
125
  Raises:
87
- TypeError: If data type of `input` or `indices` is not supported.
88
- TypeError: If `kernel_size`, `stride` or `padding` is neither an int nor a tuple.
89
- ValueError: If numbers in `stride`, `padding` or `kernel_size` are not positive.
90
- ValueError: If the shapes of `input` and `indices` are different.
91
- ValueError: If the length of `input` is not 3 or 4.
92
- ValueError: If the type of `output_size` is not tuple.
93
- ValueError: If `output_size` is not close to output size computed by attr `kernel_size`, `stride`, `padding`.
126
+ TypeError: If `input` is not a Tensor.
127
+ TypeError: If dtype of `input` is not float16, float32, bfloat16.
94
128
 
95
129
  Supported Platforms:
96
- ``Ascend``
130
+ ``Ascend``
97
131
 
98
132
  Examples:
133
+ >>> import mindspore
99
134
  >>> import numpy as np
100
135
  >>> from mindspore import Tensor, ops
101
- >>> input = Tensor(np.array([[[[0, 1], [8, 9]]]]).astype(np.float32))
102
- >>> indices = Tensor(np.array([[[[0, 1], [2, 3]]]]).astype(np.int64))
103
- >>> output = ops.max_unpool2d_ext(input, indices, 1, stride=1, padding=0)
104
- >>> print(output.asnumpy())
105
- [[[[0. 1.]
106
- [8. 9.]]]]
136
+ >>> input = Tensor(np.array([0.1, 0.2, 30, 25]), mindspore.float32)
137
+ >>> output = ops.auto_generate.softplus_ext(input)
138
+ >>> print(output)
139
+ [0.74439657 0.7981388 30. 25.]
107
140
  """
108
- return max_unpool2d_impl(input, indices, kernel_size, stride, padding, output_size)
141
+ return softplus_impl(input, beta, threshold)
109
142
 
110
143
 
111
144
  def outer(input, vec2):
@@ -150,186 +183,144 @@ def outer(input, vec2):
150
183
  return outer_impl(input, vec2)
151
184
 
152
185
 
153
- def log2(input):
186
+ def logaddexp(input, other):
154
187
  r"""
155
- Returns the logarithm to the base 2 of a tensor element-wise.
188
+ Computes the logarithm of the sum of exponentiations of the inputs.
189
+ This function is useful in statistics where the calculated probabilities of events may be
190
+ so small as to exceed the range of normal floating point numbers.
156
191
 
157
192
  .. math::
158
- y_i = \log_2(x_i)
193
+
194
+ out_i = \log(exp(input_i) + \exp(other_i))
159
195
 
160
196
  .. warning::
161
- - If the input value of operator Log2 is within the range (0, 0.01] or [0.95, 1.05], the output accuracy
162
- may be affacted.
197
+ This is an experimental API that is subject to change or deletion.
163
198
 
164
199
  Args:
165
- input (Tensor): Input Tensor of any dimension. The value must be greater than 0.
200
+ input (Tensor): Input Tensor. The dtype of `input` must be float.
201
+ other (Tensor): Input Tensor. The dtype of `other` must be float.
202
+ If the shape of `input` is not equal to the shape of `other`,
203
+ they must be broadcastable to a common shape.
166
204
 
167
205
  Returns:
168
- Tensor, has the same shape as the `input`. If `input.dtype` is of integer or boolean type, the output dtype
169
- will be float32. Otherwise, the output dtype will be the same as `input.dtype`.
206
+ Tensor, with the same dtype as `input` and `other`.
170
207
 
171
208
  Raises:
172
- TypeError: If `input` is not a Tensor.
209
+ TypeError: If `input` or `other` is not a Tensor.
210
+ TypeError: The dtype of `input` or `other` is not float.
173
211
 
174
212
  Supported Platforms:
175
213
  ``Ascend``
176
214
 
177
215
  Examples:
178
- >>> import mindspore
179
216
  >>> import numpy as np
180
- >>> from mindspore import Tensor, mint
181
- >>> x = Tensor(np.array([3.0, 5.0, 7.0]), mindspore.float32)
182
- >>> output = mint.log2(x)
217
+ >>> from mindspore import Tensor, ops
218
+ >>> x1 = Tensor(np.array([1, 2, 3]).astype(np.float16))
219
+ >>> x2 = Tensor(np.array(2).astype(np.float16))
220
+ >>> output = ops.logaddexp_ext(x1, x2)
183
221
  >>> print(output)
184
- [1.5849625 2.321928 2.807355 ]
222
+ [2.312 2.693 3.312]
185
223
  """
186
- return log2_impl(input)
224
+ return logaddexp_impl(input, other)
187
225
 
188
226
 
189
- def mse_loss(input, target, reduction='mean'):
227
+ def acosh(input):
190
228
  r"""
191
- Calculates the mean squared error between the predicted value and the label value.
229
+ Computes inverse hyperbolic cosine of the inputs element-wise.
192
230
 
193
- For detailed information, please refer to :class:`mindspore.nn.MSELoss`.
231
+ .. math::
194
232
 
195
- Args:
196
- input (Tensor): Tensor of any dimension. The data type needs to be consistent with the `target`.
197
- It should also be broadcastable with the `target`.
198
- target (Tensor): The input label. Tensor of any dimension. The data type needs to be consistent with the `input`.
199
- It should also be broadcastable with the `input`.
200
- reduction (str, optional): Apply specific reduction method to the output: ``'mean'`` , ``'none'`` ,
201
- ``'sum'`` . Default: ``'mean'`` .
233
+ out_i = \cosh^{-1}(input_i)
202
234
 
203
- - ``'none'``: no reduction will be applied.
204
- - ``'mean'``: compute and return the mean of elements in the output.
205
- - ``'sum'``: the output elements will be summed.
235
+ .. note::
236
+ Given an input tensor input, the function computes inverse hyperbolic cosine of every element.
237
+ Input range is [1, inf].
238
+
239
+ Args:
240
+ input (Tensor): The input tensor of inverse hyperbolic cosine function.
206
241
 
207
242
  Returns:
208
- - Tensor. If `reduction` is ``'mean'`` or ``'sum'``, the shape of output is `Tensor Scalar`.
209
- - If reduction is ``'none'``, the shape of output is the broadcasted shape of **input** and **target** .
243
+ Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
210
244
 
211
245
  Raises:
212
- ValueError: If `reduction` is not one of ``'mean'`` , ``'sum'`` or ``'none'``.
213
- ValueError: If `input` and `target` are not broadcastable.
214
- TypeError: If `input` and `target` are in different data type.
246
+ TypeError: If `input` is not a Tensor.
215
247
 
216
248
  Supported Platforms:
217
- ``Ascend``
249
+ ``Ascend`` ``GPU`` ``CPU``
218
250
 
219
251
  Examples:
220
252
  >>> import mindspore
221
253
  >>> import numpy as np
222
254
  >>> from mindspore import Tensor, ops
223
- >>> logits = Tensor(np.array([1, 2, 3]), mindspore.float32)
224
- >>> labels = Tensor(np.array([[1, 1, 1], [1, 2, 2]]), mindspore.float32)
225
- >>> output = ops.mse_loss_ext(logits, labels, reduction='none')
255
+ >>> input = Tensor(np.array([1.0, 1.5, 3.0, 100.0]), mindspore.float32)
256
+ >>> output = ops.acosh_ext(input)
226
257
  >>> print(output)
227
- [[0. 1. 4.]
228
- [0. 0. 1.]]
258
+ [0. 0.9624236 1.7627472 5.298292 ]
229
259
  """
230
- return mse_loss_impl(input, target, converted_reduction)
260
+ return acosh_impl(input)
231
261
 
232
262
 
233
- def diag(input, diagonal=0):
263
+ def argmin(input, dim=None, keepdim=False):
234
264
  r"""
235
- If input is a vector (1-D tensor), then returns a 2-D square tensor with the elements of input as the diagonal.
236
-
237
- If input is a matrix (2-D tensor), then returns a 1-D tensor with the diagonal elements of input.
238
-
239
- The argument diagonal controls which diagonal to consider:
240
-
241
- - If `diagonal` = 0, it is the main diagonal.
242
-
243
- - If `diagonal` > 0, it is above the main diagonal.
244
-
245
- - If `diagonal` < 0, it is below the main diagonal.
246
-
247
- .. warning::
248
- This is an experimental API that is subject to change or deletion.
265
+ Return the indices of the minimum values of a tensor across a dimension.
249
266
 
250
267
  Args:
251
- input (Tensor): The input tensor.
252
- diagonal (int, optional): the diagonal to consider. Defaults: ``0``.
268
+ input (Tensor): Input tensor.
269
+ dim (Union[int, None], optional): Specify the axis for calculation. If `dim` is ``None`` , the indices of the minimum
270
+ value within the flattened input will be returned. Default: ``None`` .
271
+ keepdim (bool, optional): Whether the output tensor retains the specified
272
+ dimension. Ignored if `dim` is None. Default: ``False`` .
253
273
 
254
274
  Returns:
255
- Tensor, has the same dtype as the `input`, its shape is up to `diagonal`.
256
-
257
- - If `input` shape is :math:`(x_0)` : then output shape is :math:`(x_0 + \left | diagonal \right | , x_0 + \left | diagonal \right | )` 2-D Tensor.
258
-
259
- - If `input` shape is :math:`(x_0, x_1)` : then output shape is main diagonal to move :math:`(\left | diagonal \right |)` elements remains elements' length 1-D Tensor.
275
+ Tensor, indices of the minimum values of the input tensor across a dimension.
260
276
 
261
277
  Raises:
262
- TypeError: If `input` is not a Tensor.
263
- ValueError: If shape of `input` is not 1-D and 2-D.
278
+ TypeError: If `keepdim` is not bool.
279
+ ValueError: If `dim` is out of range.
264
280
 
265
281
  Supported Platforms:
266
282
  ``Ascend``
267
283
 
268
284
  Examples:
269
- >>> from mindspore import Tensor, mint
270
- >>> input = Tensor([1, 2, 3, 4]).astype('int32')
271
- >>> output = mint.diag(input)
285
+ >>> import numpy as np
286
+ >>> from mindspore import Tensor
287
+ >>> from mindspore import ops
288
+ >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32))
289
+ >>> output = ops.auto_generate.argmin_ext(x, dim=-1)
272
290
  >>> print(output)
273
- [[1 0 0 0]
274
- [0 2 0 0]
275
- [0 0 3 0]
276
- [0 0 0 4]]
291
+ [0 1 2]
277
292
  """
278
- return diag_impl(input, diagonal)
293
+ return argmin_impl(input, dim, keepdim)
279
294
 
280
295
 
281
- def frac(input):
296
+ def prod(input, dim=None, keepdim=False, dtype=None):
282
297
  r"""
283
- Calculates the fractional part of each element in the input.
284
-
285
- .. math::
286
- out_i = input_i - \lfloor |input_i| \rfloor * sgn(input_i)
287
-
288
- .. warning::
289
- This is an experimental API that is subject to change or deletion.
298
+ Reduces a dimension of a tensor by multiplying all elements in the dimension, by default. And also can
299
+ reduce a dimension of `input` along the `dim`. Determine whether the dimensions of the output and input are the
300
+ same by controlling `keepdim`.
290
301
 
291
302
  Args:
292
- input (Tensor): The input Tensor.
303
+ input (Tensor[Number]): The input tensor. The dtype of the tensor to be reduced is number.
304
+ :math:`(N, *)` where :math:`*` means, any number of additional dimensions.
305
+ dim (int): The dimensions to reduce. Default: ``None`` , reduce all dimensions.
306
+ Only constant value is allowed. Assume the rank of `input` is r, and the value range is [-r,r).
307
+ keepdim (bool): If ``True`` , keep these reduced dimensions and the length is 1.
308
+ If ``False`` , don't keep these dimensions. Default: ``False`` .
309
+ dtype (:class:`mindspore.dtype`): The desired data type of returned Tensor. Default: ``None`` .
293
310
 
294
311
  Returns:
295
- Tensor, has the same shape and type as input.
296
-
297
- Raises:
298
- TypeError: If `input` is not a Tensor.
299
-
300
- Supported Platforms:
301
- ``Ascend``
302
-
303
- Examples:
304
- >>> import mindspore
305
- >>> import numpy as np
306
- >>> from mindspore import Tensor, ops
307
- >>> x = Tensor([2, 4.2, -2.5], mindspore.float16)
308
- >>> output = ops.frac_ext(x)
309
- >>> print(output)
310
- [ 0. 0.1992 -0.5 ]
311
- """
312
- return frac_impl(input)
313
-
314
-
315
- def flatten(input, start_dim=0, end_dim=-1):
316
- r"""
317
- Flatten a tensor along dimensions from `start_dim` to `end_dim`.
318
-
319
- Args:
320
- input (Tensor): The input Tensor.
321
- start_dim (int, optional): The first dimension to flatten. Default: ``0`` .
322
- end_dim (int, optional): The last dimension to flatten. Default: ``-1`` .
312
+ Tensor, has the same data type as input tensor.
323
313
 
324
- Returns:
325
- Tensor. If no dimensions are flattened, returns the original `input`, otherwise return the flattened Tensor.
326
- If `input` is a 0-dimensional Tensor, a 1-dimensional Tensor will be returned.
314
+ - If `dim` is ``None`` , and `keepdim` is ``False`` ,
315
+ the output is a 0-D tensor representing the product of all elements in the input tensor.
316
+ - If `dim` is int, set as 1, and `keepdim` is ``False`` ,
317
+ the shape of output is :math:`(input_0, input_2, ..., input_R)`.
327
318
 
328
319
  Raises:
329
320
  TypeError: If `input` is not a Tensor.
330
- TypeError: If `start_dim` or `end_dim` is not int.
331
- ValueError: If `start_dim` is greater than `end_dim` after canonicalized.
332
- ValueError: If `start_dim` or `end_dim` is not in range of [-input.dim, input.dim-1].
321
+ TypeError: If `dim` is not one of the following: int or None.
322
+ TypeError: If `keepdim` is not a bool.
323
+ ValueError: If `dim` is out of range.
333
324
 
334
325
  Supported Platforms:
335
326
  ``Ascend`` ``GPU`` ``CPU``
@@ -338,249 +329,272 @@ def flatten(input, start_dim=0, end_dim=-1):
338
329
  >>> import mindspore
339
330
  >>> import numpy as np
340
331
  >>> from mindspore import Tensor, ops
341
- >>> input_x = Tensor(np.ones(shape=[1, 2, 3, 4]), mindspore.float32)
342
- >>> output = ops.auto_generate.flatten_ext(input_x)
332
+ >>> x = Tensor(np.random.randn(3, 4, 5, 6).astype(np.float32))
333
+ >>> output = ops.prod_ext(x, 1, keepdim=True)
334
+ >>> result = output.shape
335
+ >>> print(result)
336
+ (3, 1, 5, 6)
337
+ >>> # case 1: Reduces a dimension by multiplying all elements in the dimension.
338
+ >>> x = Tensor(np.array([[[1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3]],
339
+ ... [[4, 4, 4, 4, 4, 4], [5, 5, 5, 5, 5, 5], [6, 6, 6, 6, 6, 6]],
340
+ ... [[7, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8], [9, 9, 9, 9, 9, 9]]]), mindspore.float32)
341
+ >>> output = ops.prod_ext(x)
342
+ >>> print(output)
343
+ 2.2833798e+33
343
344
  >>> print(output.shape)
344
- (24,)
345
+ ()
346
+ >>> # case 2: Reduces a dimension along dim 0.
347
+ >>> output = ops.prod_ext(x, 0, True)
348
+ >>> print(output)
349
+ [[[ 28. 28. 28. 28. 28. 28.]
350
+ [ 80. 80. 80. 80. 80. 80.]
351
+ [162. 162. 162. 162. 162. 162.]]]
352
+ >>> # case 3: Reduces a dimension along dim 1.
353
+ >>> output = ops.prod_ext(x, 1, True)
354
+ >>> print(output)
355
+ [[[ 6. 6. 6. 6. 6. 6.]]
356
+ [[120. 120. 120. 120. 120. 120.]]
357
+ [[504. 504. 504. 504. 504. 504.]]]
358
+ >>> # case 4: Reduces a dimension along dim 2.
359
+ >>> output = ops.prod_ext(x, 2, True)
360
+ >>> print(output)
361
+ [[[1.00000e+00]
362
+ [6.40000e+01]
363
+ [7.29000e+02]]
364
+ [[4.09600e+03]
365
+ [1.56250e+04]
366
+ [4.66560e+04]]
367
+ [[1.17649e+05]
368
+ [2.62144e+05]
369
+ [5.31441e+05]]]
345
370
  """
346
- return flatten_impl(input, start_dim, end_dim)
371
+ return prod_impl(input, dim, keepdim, dtype)
347
372
 
348
373
 
349
- def argmax(input, dim=None, keepdim=False):
374
+ def mish(input):
350
375
  r"""
351
- argmax(input) -> Tensor
352
-
353
- Return the indices of the maximum values of a tensor.
354
-
355
- Args:
356
- input (Tensor): Input tensor.
376
+ Computes MISH (A Self Regularized Non-Monotonic Neural Activation Function)
377
+ of input tensors element-wise.
357
378
 
358
- Returns:
359
- Tensor.
379
+ The formula is defined as follows:
360
380
 
361
- Supported Platforms:
362
- ``Ascend``
381
+ .. math::
382
+ \text{mish}(input) = input * \tanh(softplus(\text{input}))
363
383
 
364
- Examples:
365
- >>> import numpy as np
366
- >>> from mindspore import Tensor
367
- >>> from mindspore import ops
368
- >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32))
369
- >>> output = ops.auto_generate.argmax_ext(x)
370
- >>> print(output)
371
- 6
384
+ See more details in `A Self Regularized Non-Monotonic Neural Activation Function
385
+ <https://arxiv.org/abs/1908.08681>`_.
372
386
 
373
- .. function:: argmax(input, dim, keepdim=False) -> Tensor
374
- :noindex:
387
+ Mish Activation Function Graph:
375
388
 
376
- Return the indices of the maximum values of a tensor across a dimension.
389
+ .. image:: ../images/Mish.png
390
+ :align: center
377
391
 
378
392
  Args:
379
- input (Tensor): Input tensor.
380
- dim (int): The dimension to reduce.
381
- keepdim (bool, optional): Whether the output tensor retains the specified
382
- dimension. Default: ``False`` .
393
+ input (Tensor): The input of MISH. Supported dtypes:
394
+
395
+ - Ascend: float16, float32.
383
396
 
384
397
  Returns:
385
- Tensor, indices of the maximum values across a dimension.
398
+ Tensor, has the same type and shape as the `input`.
386
399
 
387
400
  Raises:
388
- TypeError: If `keepdim` is not bool.
389
- ValueError: If `dim` is out of range.
401
+ TypeError: If `input` is not a Tensor.
402
+ TypeError: If dtype of `input` is not float16 or float32.
390
403
 
391
404
  Supported Platforms:
392
405
  ``Ascend``
393
406
 
394
407
  Examples:
408
+ >>> import mindspore
409
+ >>> from mindspore import Tensor, ops
395
410
  >>> import numpy as np
396
- >>> from mindspore import Tensor
397
- >>> from mindspore import ops
398
- >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32))
399
- >>> output = ops.auto_generate.argmax_ext(x, dim=-1)
411
+ >>> x = Tensor(np.array([[-1.1, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
412
+ >>> output = ops.mish(x)
400
413
  >>> print(output)
401
- [1 0 0]
414
+ [[-3.0764845e-01 3.9974124e+00 -2.6832507e-03]
415
+ [ 1.9439589e+00 -3.3576239e-02 8.9999990e+00]]
402
416
  """
403
- return argmax_impl(input, dim, keepdim)
417
+ return mish_impl(input)
404
418
 
405
419
 
406
- def topk(input, k, dim=-1, largest=True, sorted=True):
420
+ def leaky_relu(input, negative_slope=0.01):
407
421
  r"""
408
- Finds values and indices of the `k` largest or smallest entries along a given dimension.
422
+ leaky_relu activation function. The element of `input` less than 0 times `negative_slope` .
409
423
 
410
- .. warning::
411
- - If sorted is set to False, due to different memory layout and traversal methods on different platforms,
412
- the display order of calculation results may be inconsistent when `sorted` is False.
424
+ The activation function is defined as:
413
425
 
414
- If the `input` is a one-dimensional Tensor, finds the `k` largest or smallest entries in the Tensor,
415
- and outputs its value and index as a Tensor. values[`k`] is the `k` largest item in `input`,
416
- and its index is indices [`k`].
426
+ .. math::
427
+ \text{leaky_relu}(input) = \begin{cases}input, &\text{if } input \geq 0; \cr
428
+ \text{negative_slope} * input, &\text{otherwise.}\end{cases}
417
429
 
418
- For a multi-dimensional matrix,
419
- calculates the first or last `k` entries in a given dimension, therefore:
430
+ where :math:`negative\_slope` represents the `negative_slope` parameter.
420
431
 
421
- .. math::
432
+ For more details, see `Rectifier Nonlinearities Improve Neural Network Acoustic Models
433
+ <https://ai.stanford.edu/~amaas/papers/relu_hybrid_icml2013_final.pdf>`_.
422
434
 
423
- values.shape = indices.shape
435
+ LeakyReLU Activation Function Graph:
424
436
 
425
- If the two compared elements are the same, the one with the smaller index value is returned first.
437
+ .. image:: ../images/LeakyReLU.png
438
+ :align: center
426
439
 
427
440
  Args:
428
- input (Tensor): Input to be computed.
429
- k (int): The number of top or bottom elements to be computed along the last dimension.
430
- dim (int, optional): The dimension to sort along. Default: ``-1`` .
431
- largest (bool, optional): If largest is ``False`` then the k smallest elements are returned.
432
- Default: ``True`` .
433
- sorted (bool, optional): If ``True`` , the obtained elements will be sorted by the values in descending
434
- order or ascending order according to `largest`. If ``False`` , the obtained elements will not be
435
- sorted. Default: ``True`` .
441
+ input (Tensor): The input of leaky_relu is a Tensor of any dimension.
442
+ negative_slope (Union[int, float], optional): Slope of the activation function when the element of `input` is less than 0.
443
+ Default: ``0.01`` .
436
444
 
437
445
  Returns:
438
- A tuple consisting of `values` and `indices`.
439
-
440
- - values (Tensor) - The `k` largest or smallest elements in each slice of the given dimension.
441
- - indices (Tensor) - The indices of values within the last dimension of input.
446
+ Tensor, has the same type and shape as the `input`.
442
447
 
443
448
  Raises:
444
- TypeError: If `sorted` is not a bool.
445
449
  TypeError: If `input` is not a Tensor.
446
- TypeError: If `k` is not an int.
450
+ TypeError: If `negative_slope` is not a float or an int.
447
451
 
448
452
  Supported Platforms:
449
453
  ``Ascend``
450
454
 
451
455
  Examples:
452
- >>> import mindspore as ms
453
- >>> from mindspore import ops
454
- >>> x = ms.Tensor([[0.5368, 0.2447, 0.4302, 0.9673],
455
- ... [0.4388, 0.6525, 0.4685, 0.1868],
456
- ... [0.3563, 0.5152, 0.9675, 0.8230]], dtype=ms.float32)
457
- >>> output = ops.topk_ext(x, 2, dim=1)
458
- >>> print(output)
459
- (Tensor(shape=[3, 2], dtype=Float32, value=
460
- [[ 9.67299998e-01, 5.36800027e-01],
461
- [ 6.52499974e-01, 4.68499988e-01],
462
- [ 9.67499971e-01, 8.23000014e-01]]), Tensor(shape=[3, 2], dtype=Int64, value=
463
- [[3, 0],
464
- [1, 2],
465
- [2, 3]]))
466
- >>> output2 = ops.topk_ext(x, 2, dim=1, largest=False)
467
- >>> print(output2)
468
- (Tensor(shape=[3, 2], dtype=Float32, value=
469
- [[ 2.44700000e-01, 4.30200011e-01],
470
- [ 1.86800003e-01, 4.38800007e-01],
471
- [ 3.56299996e-01, 5.15200019e-01]]), Tensor(shape=[3, 2], dtype=Int64, value=
472
- [[1, 2],
473
- [3, 0],
474
- [0, 1]]))
456
+ >>> import mindspore
457
+ >>> import numpy as np
458
+ >>> from mindspore import Tensor, ops
459
+ >>> input = Tensor(np.array([[-1.0, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
460
+ >>> print(ops.extend.leaky_relu_ext(input, negative_slope=0.2))
461
+ [[-0.2 4. -1.6]
462
+ [ 2. -1. 9. ]]
475
463
  """
476
- return topk_impl(input, k, dim, largest, sorted)
464
+ return leaky_relu_impl(input, negative_slope)
477
465
 
478
466
 
479
- def t(input):
467
+ def stack(tensors, dim=0):
480
468
  r"""
481
- Transpose the input tensor.
469
+ Stacks a list of tensors in specified dim.
482
470
 
483
- .. warning::
484
- This is an experimental API that is subject to change or deletion.
471
+ Stacks the list of input tensors with the same rank `R`, output is a tensor of rank `(R+1)`.
472
+
473
+ Given input tensors of shape :math:`(x_1, x_2, ..., x_R)`. Set the number of input tensors as `N`.
474
+ If :math:`dim \ge 0`, the shape of the output tensor is
475
+ :math:`(x_1, x_2, ..., x_{dim}, N, x_{dim+1}, ..., x_R)`.
485
476
 
486
477
  Args:
487
- input (Tensor): The input tensor.
478
+ tensors (Union[tuple, list]): A Tuple or list of Tensor objects with the same shape and type.
479
+ dim (int, optional): Dimension to stack. The range is [-(R+1), R+1). Default: ``0`` .
488
480
 
489
481
  Returns:
490
- Tensor, transpose 2D tensor, return 1D tensor as it is.
482
+ Tensor. A stacked Tensor with the same type as `tensors`.
491
483
 
492
484
  Raises:
493
- ValueError: If the dimension of `input` is greater than 2.
494
- ValueError: If `input` is empty.
495
- TypeError: If `input` is not a tensor.
485
+ TypeError: If the data types of elements in `tensors` are not the same.
486
+ ValueError: If `dim` is out of the range [-(R+1), R+1);
487
+ or if the shapes of elements in `tensors` are not the same.
496
488
 
497
489
  Supported Platforms:
498
490
  ``Ascend``
499
491
 
500
492
  Examples:
501
493
  >>> import mindspore
502
- >>> import numpy as np
503
494
  >>> from mindspore import Tensor, ops
504
- >>> input = Tensor(np.array([[1, 2, 3], [4, 5, 6]]), mindspore.float32)
505
- >>> output = ops.t_ext(input)
495
+ >>> import numpy as np
496
+ >>> data1 = Tensor(np.array([0, 1]).astype(np.float32))
497
+ >>> data2 = Tensor(np.array([2, 3]).astype(np.float32))
498
+ >>> output = ops.auto_generate.stack_ext([data1, data2], 0)
506
499
  >>> print(output)
507
- [[ 1. 4.]
508
- [ 2. 5.]
509
- [ 3. 6.]]
500
+ [[0. 1.]
501
+ [2. 3.]]
510
502
  """
511
- return t_impl(input)
503
+ return stack_impl(tensors, dim)
512
504
 
513
505
 
514
- def matrix_inverse(input):
506
+ def sum(input, dim=None, keepdim=False, dtype=None):
515
507
  r"""
516
- Compute the inverse of the input matrix.
508
+ Calculate sum of Tensor elements over a given dim.
509
+
510
+ Note:
511
+ The `dim` with tensor type is only used for compatibility with older versions and is not recommended.
517
512
 
518
513
  Args:
519
- input (Tensor): A matrix to be calculated. Input `input` must be at least two dimensions, and the size of
520
- the last two dimensions must be the same size.
514
+ input (Tensor): The input tensor.
515
+ dim (Union[None, int, tuple(int), list(int), Tensor]): Dimensions along which a sum is performed.
516
+ If ``None`` , sum all the elements of the input tensor.
517
+ If the `dim` is a tuple or list of ints, a sum is performed on all the dimensions specified in the tuple.
518
+ Must be in the range :math:`[-input.ndim, input.ndim)` . Default: ``None`` .
519
+ keepdim (bool): Whether the output tensor has `dim` retained or not.
520
+ If ``True`` , keep these reduced dimensions and the length is 1.
521
+ If ``False`` , don't keep these dimensions. Default: ``False`` .
522
+ dtype (:class:`mindspore.dtype`): The desired data type of returned Tensor. Default: ``None`` .
521
523
 
522
524
  Returns:
523
- Tensor, has the same type and shape as input`.
525
+ A Tensor, sum of elements over a given `dim` in `input`.
524
526
 
525
527
  Raises:
526
528
  TypeError: If `input` is not a Tensor.
527
- ValueError: If the size of the last two dimensions of `input` is not the same.
528
- ValueError: If the dimension of `input` is 1.
529
+ TypeError: If `dim` is not an int, tulpe(int), list(int), Tensor or None.
530
+ ValueError: If `dim` is not in the range :math:`[-input.ndim, input.ndim)` .
531
+ TypeError: If `keepdim` is not a bool.
529
532
 
530
533
  Supported Platforms:
531
- ``Ascend``
534
+ ``Ascend`` ``GPU`` ``CPU``
532
535
 
533
536
  Examples:
537
+ >>> import mindspore
538
+ >>> import numpy as np
534
539
  >>> from mindspore import Tensor, ops
535
540
  >>> from mindspore import dtype as mstype
536
- >>> x = Tensor([[1., 2.], [3., 4.]], mstype.float32)
537
- >>> print(ops.matrix_inverse_ext(x))
538
- [[-2. 1. ]
539
- [ 1.5 -0.5]]
541
+ >>> x = Tensor(np.array([[[1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3]],
542
+ ... [[4, 4, 4, 4, 4, 4], [5, 5, 5, 5, 5, 5], [6, 6, 6, 6, 6, 6]],
543
+ ... [[7, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8], [9, 9, 9, 9, 9, 9]]]), mstype.float32)
544
+ >>> out = ops.sum_ext(x)
545
+ >>> print(out)
546
+ 270.0
547
+ >>> out = ops.sum_ext(x, dim=2)
548
+ >>> print(out)
549
+ [[ 6. 12. 18.]
550
+ [24. 30. 36.]
551
+ [42. 48. 54.]]
552
+ >>> out = ops.sum_ext(x, dim=2, keepdim=True)
553
+ >>> print(out)
554
+ [[[ 6.]
555
+ [12.]
556
+ [18.]]
557
+ [[24.]
558
+ [30.]
559
+ [36.]]
560
+ [[42.]
561
+ [48.]
562
+ [54.]]]
540
563
  """
541
- return matrix_inverse_impl(input)
564
+ return sum_impl(input, dim, keepdim, dtype)
542
565
 
543
566
 
544
- def log_softmax(input, dim=None, dtype=None):
567
+ def atan(input):
545
568
  r"""
546
- Applies the Log Softmax function to the input tensor on the specified axis.
547
- Supposes a slice in the given axis, :math:`x` for each element :math:`x_i`,
548
- the Log Softmax function is shown as follows:
569
+ Computes the trigonometric inverse tangent of the input element-wise.
549
570
 
550
571
  .. math::
551
- \text{output}(x_i) = \log \left(\frac{\exp(x_i)} {\sum_{j = 0}^{N-1}\exp(x_j)}\right),
552
572
 
553
- where :math:`N` is the length of the Tensor.
573
+ out_i = \tan^{-1}(input_i)
554
574
 
555
575
  Args:
556
- input (Tensor): The input Tensor.
557
- dim (int, optional): The axis to perform the Log softmax operation. Default: ``None`` .
558
-
559
- Keyword Args:
560
- dtype (:class:`mindspore.dtype`, optional): The desired dtype of returned Tensor. If not set to None, the input
561
- Tensor will be cast to `dtype` before the operation is performed. This is useful for preventing overflows.
562
- If set to None, stay the same as original Tensor. Default: ``None`` . Supported data type is {float16, float32, double, bfloat16}.
576
+ input (Tensor): The shape of tensor is
577
+ :math:`(N,*)` where :math:`*` means, any number of additional dimensions.
563
578
 
564
579
  Returns:
565
- Tensor, with the same shape as the input.
580
+ Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
566
581
 
567
582
  Raises:
568
- TypeError: If `dim` is not an int.
569
- ValueError: If `dim` is not in range [-len(input.shape), len(input.shape)).
583
+ TypeError: If `input` is not a Tensor.
570
584
 
571
585
  Supported Platforms:
572
- ``Ascend``
586
+ ``Ascend`` ``GPU`` ``CPU``
573
587
 
574
588
  Examples:
575
589
  >>> import mindspore
576
590
  >>> import numpy as np
577
591
  >>> from mindspore import Tensor, ops
578
- >>> logits = Tensor(np.array([1, 2, 3, 4, 5]), mindspore.float32)
579
- >>> output = ops.auto_generate.log_softmax(logits, dim=-1)
592
+ >>> input = Tensor(np.array([1.0, 0.0]), mindspore.float32)
593
+ >>> output = ops.atan_ext(input)
580
594
  >>> print(output)
581
- [-4.4519143 -3.4519143 -2.4519143 -1.4519144 -0.4519144]
595
+ [0.7853982 0. ]
582
596
  """
583
- return log_softmax_impl(input, dim, dtype)
597
+ return atan_impl(input)
584
598
 
585
599
 
586
600
  def logsumexp(input, dim, keepdim=False):
@@ -630,58 +644,167 @@ def logsumexp(input, dim, keepdim=False):
630
644
  return logsumexp_impl(input, dim, keepdim)
631
645
 
632
646
 
633
- def adaptive_avg_pool2d_grad(grad_output, x):
647
+ def frac(input):
634
648
  r"""
635
- None
649
+ Calculates the fractional part of each element in the input.
650
+
651
+ .. math::
652
+ out_i = input_i - \lfloor |input_i| \rfloor * sgn(input_i)
653
+
654
+ .. warning::
655
+ This is an experimental API that is subject to change or deletion.
656
+
657
+ Args:
658
+ input (Tensor): The input Tensor.
659
+
660
+ Returns:
661
+ Tensor, has the same shape and type as input.
662
+
663
+ Raises:
664
+ TypeError: If `input` is not a Tensor.
665
+
666
+ Supported Platforms:
667
+ ``Ascend``
668
+
669
+ Examples:
670
+ >>> import mindspore
671
+ >>> import numpy as np
672
+ >>> from mindspore import Tensor, ops
673
+ >>> x = Tensor([2, 4.2, -2.5], mindspore.float16)
674
+ >>> output = ops.frac_ext(x)
675
+ >>> print(output)
676
+ [ 0. 0.1992 -0.5 ]
636
677
  """
637
- return adaptive_avg_pool2d_grad_impl(grad_output, x)
678
+ return frac_impl(input)
638
679
 
639
680
 
640
- def ffn(x, weight1, weight2, expertTokens=None, bias1=None, bias2=None, scale=None, offset=None, deqScale1=None, deqScale2=None, antiquant_scale1=None, antiquant_scale2=None, antiquant_offset1=None, antiquant_offset2=None, activation='fastgelu', inner_precise=0):
681
+ def log_softmax(input, dim=None, dtype=None):
641
682
  r"""
642
- None
683
+ Applies the Log Softmax function to the input tensor on the specified axis.
684
+ Supposes a slice in the given axis, :math:`x` for each element :math:`x_i`,
685
+ the Log Softmax function is shown as follows:
686
+
687
+ .. math::
688
+ \text{output}(x_i) = \log \left(\frac{\exp(x_i)} {\sum_{j = 0}^{N-1}\exp(x_j)}\right),
689
+
690
+ where :math:`N` is the length of the Tensor.
691
+
692
+ Args:
693
+ input (Tensor): The input Tensor.
694
+ dim (int, optional): The axis to perform the Log softmax operation. Default: ``None`` .
695
+
696
+ Keyword Args:
697
+ dtype (:class:`mindspore.dtype`, optional): The desired dtype of returned Tensor. If not set to None, the input
698
+ Tensor will be cast to `dtype` before the operation is performed. This is useful for preventing overflows.
699
+ If set to None, stay the same as original Tensor. Default: ``None`` . Supported data type is {float16, float32, double, bfloat16}.
700
+
701
+ Returns:
702
+ Tensor, with the same shape as the input.
703
+
704
+ Raises:
705
+ TypeError: If `dim` is not an int.
706
+ ValueError: If `dim` is not in range [-len(input.shape), len(input.shape)).
707
+
708
+ Supported Platforms:
709
+ ``Ascend``
710
+
711
+ Examples:
712
+ >>> import mindspore
713
+ >>> import numpy as np
714
+ >>> from mindspore import Tensor, ops
715
+ >>> logits = Tensor(np.array([1, 2, 3, 4, 5]), mindspore.float32)
716
+ >>> output = ops.auto_generate.log_softmax(logits, dim=-1)
717
+ >>> print(output)
718
+ [-4.4519143 -3.4519143 -2.4519143 -1.4519144 -0.4519144]
643
719
  """
644
- return ffn_impl(x, weight1, weight2, expertTokens, bias1, bias2, scale, offset, deqScale1, deqScale2, antiquant_scale1, antiquant_scale2, antiquant_offset1, antiquant_offset2, converted_activation, inner_precise)
720
+ return log_softmax_impl(input, dim, dtype)
645
721
 
646
722
 
647
- def asin(input):
723
+ def atan2(input, other):
648
724
  r"""
649
- Computes arcsine of input tensors element-wise.
725
+ Returns arctangent of input/other element-wise.
650
726
 
651
- .. math::
727
+ It returns :math:`\theta\ \in\ [-\pi, \pi]`
728
+ such that :math:`input = r*\sin(\theta), other = r*\cos(\theta)`, where :math:`r = \sqrt{input^2 + other^2}`.
652
729
 
653
- out_i = \sin^{-1}(input_i)
730
+ Note:
731
+ - Arg `input` and `other` comply with the implicit type conversion rules to make the data types consistent.
732
+ If they have different data types, the lower precision data type will be converted to relatively the
733
+ highest precision data type.
654
734
 
655
735
  Args:
656
- input (Tensor): The shape of tensor is
657
- :math:`(N,*)`, where :math:`*` means any number of additional dimensions.
736
+ input (Tensor, Number.number): The input tensor or scalar.
737
+ other (Tensor, Number.number): The input tensor or scalar. It has the same shape with `input` or
738
+ its shape is able to broadcast with `input`.
658
739
 
659
740
  Returns:
660
- Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
741
+ Tensor, the shape is the same as the one after broadcasting.
742
+ The dtype of output is float32 when dtype of `input` is in
743
+ [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
661
744
 
662
745
  Raises:
663
- TypeError: If `input` is not a Tensor.
746
+ TypeError: If `input` or `other` is not a Tensor or scalar.
747
+ RuntimeError: If the data type of `input` and `other` conversion of Parameter is required
748
+ when data type conversion of Parameter is not supported.
664
749
 
665
750
  Supported Platforms:
666
- ``Ascend`` ``GPU`` ``CPU``
751
+ ``Ascend``
667
752
 
668
753
  Examples:
669
754
  >>> import mindspore
670
755
  >>> import numpy as np
671
756
  >>> from mindspore import Tensor, ops
672
- >>> input = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32)
673
- >>> output = ops.asin_ext(input)
757
+ >>> input = Tensor(np.array([0, 1]), mindspore.float32)
758
+ >>> other = Tensor(np.array([1, 1]), mindspore.float32)
759
+ >>> output = ops.auto_generate.atan2_ext(input, other)
674
760
  >>> print(output)
675
- [0.8330927 0.04001068 0.30469266 0.59438497 ]
761
+ [0. 0.7853982]
676
762
  """
677
- return asin_impl(input)
763
+ return atan2_impl(input, other)
678
764
 
679
765
 
680
- def sort(input, dim=-1, descending=False, stable=False):
766
+ def mm(input, mat2):
681
767
  r"""
682
- None
768
+ Returns the matrix product of two arrays.
769
+ If `input` is a :math:`(n \times m)` Tensor, `mat2` is a
770
+ :math:`(m \times p)` Tensor, `out` will be a :math:`(n \times p)` Tensor.
771
+
772
+ Note:
773
+ This function cannot support broadcasting.
774
+ Refer to :func:`mindspore.ops.matmul` instead if you need a broadcastable function.
775
+
776
+ .. warning::
777
+ This is an experimental API that is subject to change or deletion.
778
+
779
+ Args:
780
+ input (Tensor): The first matrix of matrix multiplication.
781
+ The last dimension of `input` must be the same size as the first dimension of `mat2`.
782
+ mat2 (Tensor): The second matrix of matrix multiplication.
783
+ The last dimension of `input` must be the same size as the first dimension of `mat2`.
784
+
785
+ Returns:
786
+ Tensor, the matrix product of the inputs.
787
+
788
+ Raises:
789
+ ValueError: If the last dimension of `input` is not the same size as the
790
+ second-to-last dimension of `mat2`.
791
+ TypeError: If `input` or `mat2` is not a Tensor.
792
+ TypeError: If dtype of `input` or `mat2` is not float16, float32 or bfloat16.
793
+
794
+ Supported Platforms:
795
+ ``Ascend``
796
+
797
+ Examples:
798
+ >>> import mindspore as ms
799
+ >>> from mindspore import ops
800
+ >>> import numpy as np
801
+ >>> x1 = ms.Tensor(np.random.rand(2, 3), ms.float32)
802
+ >>> x2 = ms.Tensor(np.random.rand(3, 4), ms.float32)
803
+ >>> out = ops.mm_ext(x1, x2)
804
+ >>> print(out.shape)
805
+ (2, 4)
683
806
  """
684
- return sort_impl(input, dim, descending, stable)
807
+ return mm_impl(input, mat2)
685
808
 
686
809
 
687
810
  def avg_pool1d(input, kernel_size, stride=None, padding=0, ceil_mode=False, count_include_pad=True):
@@ -725,251 +848,227 @@ def avg_pool1d(input, kernel_size, stride=None, padding=0, ceil_mode=False, coun
725
848
  Examples:
726
849
  >>> import mindspore
727
850
  >>> import numpy as np
728
- >>> from mindspore import Tensor, mint
851
+ >>> from mindspore import Tensor, ops
729
852
  >>> input_x = Tensor(np.random.randint(0, 10, [1, 3, 6]), mindspore.float32)
730
- >>> output = mint.nn.functional.avg_pool1d(input_x, kernel_size=6, stride=1)
853
+ >>> output = ops.auto_generate.avg_pool1d_ext(input_x, kernel_size=6, stride=1)
731
854
  >>> print(output.shape)
732
855
  (1, 3, 1)
733
856
  """
734
857
  return avg_pool1d_impl(input, kernel_size, stride, padding, ceil_mode, count_include_pad)
735
858
 
736
859
 
737
- def matmul(input, other):
738
- r"""
739
- None
740
- """
741
- return matmul_impl(input, other)
742
-
743
-
744
- def adaptive_avg_pool3d(input, output_size):
745
- r"""
746
- None
747
- """
748
- return adaptive_avg_pool3d_impl(input, output_size)
749
-
750
-
751
- def mish(input):
860
+ def unfold(input, kernel_size, dilation=1, padding=0, stride=1):
752
861
  r"""
753
- Computes MISH (A Self Regularized Non-Monotonic Neural Activation Function)
754
- of input tensors element-wise.
862
+ Extracts sliding local blocks from a batched input tensor.
755
863
 
756
- The formula is defined as follows:
864
+ Consider a batched input tensor of shape :math:`(N, C, *)`,
865
+ where :math:`N` is the batch dimension, :math:`C` is the channel dimension,
866
+ and :math:`*` represent arbitrary spatial dimensions. This operation flattens
867
+ each sliding `Kernel_size`- sized block within the spatial dimensions
868
+ of `input` into a column (i.e., last dimension) of a 3-D output
869
+ tensor of shape :math:`(N, C \times \prod(\text{kernel_size}), L)`, where
870
+ :math:`C \times \prod(\text{kernel_size})` is the total number of values
871
+ within each block (a block has :math:`\prod(\text{kernel_size})` spatial
872
+ locations each containing a `C`-channeled vector), and :math:`L` is
873
+ the total number of such blocks:
757
874
 
758
875
  .. math::
759
- \text{mish}(input) = input * \tanh(softplus(\text{input}))
876
+ L = \prod_d \left\lfloor\frac{\text{spatial_size}[d] + 2 \times \text{padding}[d] %
877
+ - \text{dilation}[d] \times (\text{kernel_size}[d] - 1) - 1}{\text{stride}[d]} + 1\right\rfloor,
760
878
 
761
- See more details in `A Self Regularized Non-Monotonic Neural Activation Function
762
- <https://arxiv.org/abs/1908.08681>`_.
879
+ where :math:`\text{spatial_size}` is formed by the spatial dimensions
880
+ of `input` (:math:`*` above), and :math:`d` is over all spatial
881
+ dimensions.
763
882
 
764
- Mish Activation Function Graph:
883
+ Therefore, indexing `output` at the last dimension (column dimension)
884
+ gives all values within a certain block.
765
885
 
766
- .. image:: ../images/Mish.png
767
- :align: center
886
+ The `dilation`, `padding` and `stride` arguments specify
887
+ how the sliding blocks are retrieved.
768
888
 
769
- Args:
770
- input (Tensor): The input of MISH. Supported dtypes:
889
+ .. warning::
890
+ - Currently, batched(4D) image-like tensors are supported.
891
+ - For Ascend, it is only supported on platforms above Atlas A2.
771
892
 
772
- - Ascend: float16, float32.
893
+ Args:
894
+ input (Tensor): 4-D Tensor.
895
+ kernel_size (Union[int, tuple[int], list[int]]): The size of the kernel, should be two int
896
+ for height and width. If type is int, it means that height equal with width. Must be specified.
897
+ dilation (Union[int, tuple[int], list[int]], optional): The dilation of the window, should be two int
898
+ for height and width. If type is int, it means that height equal with width. Default: ``1`` .
899
+ padding (Union[int, tuple[int], list[int]], optional): The pad of the window, should be two int
900
+ for height and width. If type is int, it means that height equal with width. Default: ``0`` .
901
+ stride (Union[int, tuple[int], list[int]], optional): The stride of the window, should be two int
902
+ for height and width. If type is int, it means that height equal with width. Default: ``1`` .
773
903
 
774
904
  Returns:
775
- Tensor, has the same type and shape as the `input`.
905
+ A Tensor, with same type as `input` .
906
+
907
+ Shape:
908
+ - Input: :math:`(N, C, *)`
909
+ - Output: :math:`(N, C \times \prod(\text{kernel_size}), L)`
776
910
 
777
911
  Raises:
778
- TypeError: If `input` is not a Tensor.
779
- TypeError: If dtype of `input` is not float16 or float32.
912
+ TypeError: If any data type of `kernel_size`, `stride`, `dilation`, `padding` is not int, tuple or list.
913
+ ValueError: If `kernel_size`, `dilation`, `stride` value is not
914
+ greater than zero or elements number more than `2`.
915
+ ValueError: If `padding` value is less than zero.
780
916
 
781
917
  Supported Platforms:
782
918
  ``Ascend``
783
919
 
784
920
  Examples:
785
921
  >>> import mindspore
786
- >>> from mindspore import Tensor, ops
787
922
  >>> import numpy as np
788
- >>> x = Tensor(np.array([[-1.1, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
789
- >>> output = ops.mish(x)
790
- >>> print(output)
791
- [[-3.0764845e-01 3.9974124e+00 -2.6832507e-03]
792
- [ 1.9439589e+00 -3.3576239e-02 8.9999990e+00]]
923
+ >>> from mindspore import Tensor, ops
924
+ >>> x = Tensor(np.random.rand(4, 4, 32, 32), mindspore.float32)
925
+ >>> output = ops.auto_generate.unfold_ext(x, kernel_size=3, dilation=1, stride=1)
926
+ >>> print(output.shape)
927
+ (4, 36, 900)
793
928
  """
794
- return mish_impl(input)
929
+ return unfold_impl(input, converted_kernel_size, converted_dilation, converted_padding, converted_stride)
795
930
 
796
931
 
797
- def cumsum(input, dim, dtype=None):
932
+ def mean(input, dim=None, keepdim=False, dtype=None):
798
933
  r"""
799
- Computes the cumulative sum of input Tensor along `dim`.
800
-
801
- .. math::
934
+ Reduces all dimension of a tensor by averaging all elements in the dimension, by default.
935
+ And reduce a dimension of `input` along the specified `dim`. `keepdim`
936
+ determines whether the dimensions of the output and input are the same.
802
937
 
803
- y_i = x_1 + x_2 + x_3 + ... + x_i
938
+ Note:
939
+ The `dim` with tensor type is only used for compatibility with older versions and is not recommended.
804
940
 
805
941
  Args:
806
- input (Tensor): The input Tensor.
807
- dim (int): Dim along which the cumulative sum is computed.
808
- dtype (:class:`mindspore.dtype`, optional): The desired dtype of returned Tensor. If specified,
809
- the input Tensor will be cast to `dtype` before the computation. This is useful for preventing overflows.
810
- If not specified, stay the same as original Tensor. Default: ``None`` .
942
+ input (Tensor[Number]): The input tensor. The dtype of the tensor to be reduced is number.
943
+ :math:`(N, *)` where :math:`*` means, any number of additional dimensions.
944
+ dim (Union[int, tuple(int), list(int), Tensor]): The dimensions to reduce. Default: ``None`` ,
945
+ reduce all dimensions. Only constant value is allowed. Assume the rank of `input` is r,
946
+ and the value range is [-r,r).
947
+ keepdim (bool): If ``True`` , keep these reduced dimensions and the length is 1.
948
+ If ``False`` , don't keep these dimensions. Default: ``False`` .
949
+ dtype (:class:`mindspore.dtype`): The desired data type of returned Tensor. Default: ``None`` .
811
950
 
812
951
  Returns:
813
- Tensor, the shape of the output Tensor is consistent with the input Tensor's.
814
-
815
- Raises:
816
- TypeError: If `input` is not a Tensor.
817
- ValueError: If the `dim` is out of range.
818
-
819
- Supported Platforms:
820
- ``Ascend``
821
-
822
- Examples:
823
- >>> import numpy as np
824
- >>> from mindspore import Tensor
825
- >>> import mindspore.ops as ops
826
- >>> x = Tensor(np.array([[3, 4, 6, 10], [1, 6, 7, 9], [4, 3, 8, 7], [1, 3, 7, 9]]).astype(np.float32))
827
- >>> # case 1: along the dim 0
828
- >>> y = ops.auto_generate.cumsum_ext(x, 0)
829
- >>> print(y)
830
- [[ 3. 4. 6. 10.]
831
- [ 4. 10. 13. 19.]
832
- [ 8. 13. 21. 26.]
833
- [ 9. 16. 28. 35.]]
834
- >>> # case 2: along the dim 1
835
- >>> y = ops.auto_generate.cumsum_ext(x, 1)
836
- >>> print(y)
837
- [[ 3. 7. 13. 23.]
838
- [ 1. 7. 14. 23.]
839
- [ 4. 7. 15. 22.]
840
- [ 1. 4. 11. 20.]]
841
- """
842
- return cumsum_impl(input, dim, dtype)
843
-
844
-
845
- def trace(input):
846
- r"""
847
- Returns a new tensor that is the sum of the `input` main trace.
848
-
849
- Args:
850
- input (Tensor): 2-D Tensor.
952
+ Tensor, has the same data type as input tensor.
851
953
 
852
- Returns:
853
- Tensor, when the data type of `input` is integer or bool, its data type is int64, otherwise it is the same as `input`, and size equals to 1.
954
+ - If `dim` is ``None`` , and `keepdim` is ``False`` ,
955
+ the output is a 0-D tensor representing the product of all elements in the input tensor.
956
+ - If `dim` is int, set as 1, and `keepdim` is ``False`` ,
957
+ the shape of output is :math:`(x_0, x_2, ..., x_R)`.
958
+ - If `dim` is tuple(int), set as (1, 2), and `keepdim` is ``False`` ,
959
+ the shape of output is :math:`(x_0, x_3, ..., x_R)`.
960
+ - If `dim` is 1-D Tensor, set as [1, 2], and `keepdim` is ``False`` ,
961
+ the shape of output is :math:`(x_0, x_3, ..., x_R)`.
854
962
 
855
963
  Raises:
856
- TypeError: If `input` is not a Tensor.
857
- ValueError: If the dimension of `input` is not equal to 2.
858
- TypeError: If the dtype of `input` is not one of float16, float32, float64, bool, uint8, int8, int16, int32, int64, complex64, complex128, bfloat16.
964
+ TypeError: If `x` is not a Tensor.
965
+ TypeError: If `dim` is not one of the following: int, tuple, list or Tensor.
966
+ TypeError: If `keepdim` is not a bool.
967
+ ValueError: If `dim` is out of range.
859
968
 
860
969
  Supported Platforms:
861
- ``Ascend``
970
+ ``Ascend`` ``GPU`` ``CPU``
862
971
 
863
972
  Examples:
864
973
  >>> import mindspore
865
974
  >>> import numpy as np
866
975
  >>> from mindspore import Tensor, ops
867
- >>> input = Tensor(np.array([[10, 11, 12], [13, 14, 15], [16, 17, 18]]), mindspore.float32)
868
- >>> output = ops.trace_ext(input)
976
+ >>> x = Tensor(np.random.randn(3, 4, 5, 6).astype(np.float32))
977
+ >>> output = ops.mean_ext(x, 1, keepdim=True)
978
+ >>> result = output.shape
979
+ >>> print(result)
980
+ (3, 1, 5, 6)
981
+ >>> # case 1: Reduces a dimension by averaging all elements in the dimension.
982
+ >>> x = Tensor(np.array([[[2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2]],
983
+ ... [[4, 4, 4, 4, 4, 4], [5, 5, 5, 5, 5, 5], [6, 6, 6, 6, 6, 6]],
984
+ ... [[6, 6, 6, 6, 6, 6], [8, 8, 8, 8, 8, 8], [10, 10, 10, 10, 10, 10]]]),
985
+ ... mindspore.float32)
986
+ >>> output = ops.mean_ext(x)
869
987
  >>> print(output)
870
- 42.0
871
- >>> input = Tensor(np.arange(1, 13).reshape(3, 4), mindspore.float32)
872
- >>> output = ops.trace_ext(input)
988
+ 5.0
989
+ >>> print(output.shape)
990
+ ()
991
+ >>> # case 2: Reduces a dimension along the dim 0
992
+ >>> output = ops.mean_ext(x, 0, True)
873
993
  >>> print(output)
874
- 18.0
875
- >>> input = Tensor(np.arange(12, 0, -1).reshape(4, 3), mindspore.float32)
876
- >>> output = ops.trace_ext(input)
994
+ [[[4. 4. 4. 4. 4. 4.]
995
+ [5. 5. 5. 5. 5. 5.]
996
+ [6. 6. 6. 6. 6. 6.]]]
997
+ >>> # case 3: Reduces a dimension along the dim 1
998
+ >>> output = ops.mean_ext(x, 1, True)
877
999
  >>> print(output)
878
- 24.0
1000
+ [[[2. 2. 2. 2. 2. 2.]]
1001
+ [[5. 5. 5. 5. 5. 5.]]
1002
+ [[8. 8. 8. 8. 8. 8.]]]
1003
+ >>> # case 4: Reduces a dimension along the dim 2
1004
+ >>> output = ops.mean_ext(x, 2, True)
1005
+ >>> print(output)
1006
+ [[[ 2.]
1007
+ [ 2.]
1008
+ [ 2.]]
1009
+ [[ 4.]
1010
+ [ 5.]
1011
+ [ 6.]]
1012
+ [[ 6.]
1013
+ [ 8.]
1014
+ [10.]]]
879
1015
  """
880
- return trace_impl(input)
1016
+ return mean_impl(input, dim, keepdim, dtype)
881
1017
 
882
1018
 
883
- def atan2(input, other):
1019
+ def cummin(input, dim):
884
1020
  r"""
885
- Returns arctangent of input/other element-wise.
1021
+ Returns a tuple (values, indices) where `values` is the cumulative minimum value of input Tensor `input`
1022
+ along the dimension `dim`, and `indices` is the index location of each minimum value.
886
1023
 
887
- It returns :math:`\theta\ \in\ [-\pi, \pi]`
888
- such that :math:`input = r*\sin(\theta), other = r*\cos(\theta)`, where :math:`r = \sqrt{input^2 + other^2}`.
1024
+ .. math::
1025
+ \begin{array}{ll} \\
1026
+ y_{i} = \min(x_{1}, x_{2}, ... , x_{i})
1027
+ \end{array}
889
1028
 
890
- Note:
891
- - Arg `input` and `other` comply with the implicit type conversion rules to make the data types consistent.
892
- If they have different data types, the lower precision data type will be converted to relatively the
893
- highest precision data type.
1029
+ .. note::
1030
+ GE backend is not supported in Ascend.
894
1031
 
895
1032
  Args:
896
- input (Tensor, Number.number): The input tensor or scalar.
897
- other (Tensor, Number.number): The input tensor or scalar. It has the same shape with `input` or
898
- its shape is able to broadcast with `input`.
1033
+ input (Tensor): The input Tensor, The dimension must be greater than 0.
1034
+ dim (int): Operation dimension. The value of `dim` must be in the range `[-input.ndim, input.ndim - 1]`.
899
1035
 
900
1036
  Returns:
901
- Tensor, the shape is the same as the one after broadcasting.
902
- The dtype of output is float32 when dtype of `input` is in
903
- [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
1037
+ tuple [Tensor], tuple of 2 Tensors, containing the cumulative minimum of elements and the index.
1038
+ The shape of each output tensor is the same as that of input `input`.
904
1039
 
905
1040
  Raises:
906
- TypeError: If `input` or `other` is not a Tensor or scalar.
907
- RuntimeError: If the data type of `input` and `other` conversion of Parameter is required
908
- when data type conversion of Parameter is not supported.
1041
+ TypeError: If `input` is not a Tensor.
1042
+ TypeError: If `input` is a Tensor, but the type is complex or bool.
1043
+ TypeError: If `dim` is not an int.
1044
+ ValueError: If `dim` is out the range of `[-input.ndim, input.ndim - 1]`.
909
1045
 
910
1046
  Supported Platforms:
911
1047
  ``Ascend``
912
1048
 
913
1049
  Examples:
914
- >>> import mindspore
915
- >>> import numpy as np
916
1050
  >>> from mindspore import Tensor, ops
917
- >>> input = Tensor(np.array([0, 1]), mindspore.float32)
918
- >>> other = Tensor(np.array([1, 1]), mindspore.float32)
919
- >>> output = mint.atan2(input, other)
920
- >>> print(output)
921
- [0. 0.7853982]
922
- """
923
- return atan2_impl(input, other)
924
-
925
-
926
- def argmin(input, dim=None, keepdim=False):
927
- r"""
928
- Return the indices of the minimum values of a tensor across a dimension.
929
-
930
- Args:
931
- input (Tensor): Input tensor.
932
- dim (Union[int, None], optional): Specify the axis for calculation. If `dim` is ``None`` , the indices of the minimum
933
- value within the flattened input will be returned. Default: ``None`` .
934
- keepdim (bool, optional): Whether the output tensor retains the specified
935
- dimension. Ignored if `dim` is None. Default: ``False`` .
936
-
937
- Returns:
938
- Tensor, indices of the minimum values of the input tensor across a dimension.
939
-
940
- Raises:
941
- TypeError: If `keepdim` is not bool.
942
- ValueError: If `dim` is out of range.
943
-
944
- Supported Platforms:
945
- ``Ascend``
946
-
947
- Examples:
948
- >>> import numpy as np
949
- >>> from mindspore import Tensor
950
- >>> from mindspore import mint
951
- >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32))
952
- >>> output = mint.argmin(x, dim=-1)
953
- >>> print(output)
954
- [0 1 2]
1051
+ >>> import mindspore
1052
+ >>> a = Tensor([-0.2284, -0.6628, 0.0975, 0.2680, -1.3298, -0.4220], mindspore.float32)
1053
+ >>> output = ops.cummin_ext(a, dim=0)
1054
+ >>> print(output[0])
1055
+ [-0.2284 -0.6628 -0.6628 -0.6628 -1.3298 -1.3298]
1056
+ >>> print(output[1])
1057
+ [0 1 1 1 4 4]
955
1058
  """
956
- return argmin_impl(input, dim, keepdim)
1059
+ return cummin_impl(input, dim)
957
1060
 
958
1061
 
959
- def acosh(input):
1062
+ def asinh(input):
960
1063
  r"""
961
- Computes inverse hyperbolic cosine of the inputs element-wise.
1064
+ Computes inverse hyperbolic sine of the input element-wise.
962
1065
 
963
1066
  .. math::
964
1067
 
965
- out_i = \cosh^{-1}(input_i)
966
-
967
- .. note::
968
- Given an input tensor input, the function computes inverse hyperbolic cosine of every element.
969
- Input range is [1, inf].
1068
+ out_i = \sinh^{-1}(input_i)
970
1069
 
971
1070
  Args:
972
- input (Tensor): The input tensor of inverse hyperbolic cosine function.
1071
+ input (Tensor): The input tensor of inverse hyperbolic sine function.
973
1072
 
974
1073
  Returns:
975
1074
  Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
@@ -984,176 +1083,67 @@ def acosh(input):
984
1083
  >>> import mindspore
985
1084
  >>> import numpy as np
986
1085
  >>> from mindspore import Tensor, ops
987
- >>> input = Tensor(np.array([1.0, 1.5, 3.0, 100.0]), mindspore.float32)
988
- >>> output = ops.acosh_ext(input)
1086
+ >>> input = Tensor(np.array([-5.0, 1.5, 3.0, 100.0]), mindspore.float32)
1087
+ >>> output = ops.asinh_ext(input)
989
1088
  >>> print(output)
990
- [0. 0.9624236 1.7627472 5.298292 ]
991
- """
992
- return acosh_impl(input)
993
-
994
-
995
- def bincount(input, weights=None, minlength=0):
996
- r"""
997
- Count the occurrences of each value in the input.
998
-
999
- If `minlength` is not specified, the length of the output Tensor is the maximum value in the input plus one.
1000
- If `minlength` is specified, the length of the output Tensor is the maximum value between `minlength` or
1001
- the maximum value in the input plus one.
1002
-
1003
- Each value in the output Tensor represents the number of occurrences of that index value in the input.
1004
- If `weights` is specified, the output results are weighted,
1005
- i.e., :math:`out[n] += weight[i]` instead of :math:`out[n] += 1`.
1006
-
1007
- .. warning::
1008
- This is an experimental API that is subject to change or deletion.
1009
-
1010
- Args:
1011
- input (Tensor): A one-dimensional Tensor.
1012
- weights (Tensor, optional): Weights with the same shape as the input. Default: ``None``.
1013
- minlength (int, optional): The minimum length of output Tensor. Should be non-negative. Default: ``0``.
1014
-
1015
- Returns:
1016
- Tensor, If input is non-empty, the output shape is :math:`(max(max(input)+1, minlength), )`,
1017
- otherwise the shape is :math:`(0, )`.
1018
-
1019
- Raises:
1020
- TypeError: If `input` or `weights` is not a Tensor.
1021
- ValueError: If `input` contains negative values.
1022
- ValueError: If `input` is not one-dimensional or `input` and `weights` do not have the same shape.
1023
-
1024
- Supported Platforms:
1025
- ``Ascend``
1026
-
1027
- Examples:
1028
- >>> from mindspore import mint, Tensor
1029
- >>> print(mint.bincount(Tensor(np.arange(5))))
1030
- [1 1 1 1 1]
1031
- >>> print(mint.bincount(Tensor(np.array([0, 1, 1, 3, 2, 1, 7]))))
1032
- [1 3 1 1 0 0 0 1]
1033
- >>> w = Tensor(np.array([0.3, 0.5, 0.2, 0.7, 1., -0.6])) # weights
1034
- >>> x = Tensor(np.array([0, 1, 1, 2, 2, 2]))
1035
- >>> print(mint.bincount(x, weights=w, minlength=5))
1036
- [0.3 0.7 1.1 0. 0. ]
1037
- """
1038
- return bincount_impl(input, weights, minlength)
1039
-
1040
-
1041
- def tril(input, diagonal=0):
1042
- r"""
1043
- None
1044
- """
1045
- return tril_impl(input, diagonal)
1046
-
1047
-
1048
- def inplace_adds(input, other, alpha=1):
1049
- r"""
1050
- None
1051
- """
1052
- return inplace_adds_impl(input, other, alpha)
1053
-
1054
-
1055
- def inplace_add(input, other, alpha=1):
1056
- r"""
1057
- None
1089
+ [-2.3124385 1.1947632 1.8184465 5.298342 ]
1058
1090
  """
1059
- return inplace_add_impl(input, other, alpha)
1091
+ return asinh_impl(input)
1060
1092
 
1061
1093
 
1062
- def log10(input):
1094
+ def isneginf(input):
1063
1095
  r"""
1064
- Returns the logarithm to the base 10 of a tensor element-wise.
1065
-
1066
- .. math::
1067
- y_i = \log_{10}(x_i)
1096
+ Determines which elements are -inf for each position.
1068
1097
 
1069
1098
  .. warning::
1070
- - This is an experimental API that is subject to change or deletion.
1071
- - If the input value of operator Log10 is within the range (0, 0.01] or [0.95, 1.05], the output accuracy
1072
- may be affacted.
1099
+ - This API can be used only on the Atlas A2 training series.
1073
1100
 
1074
1101
  Args:
1075
- input (Tensor): Input Tensor of any dimension. The value must be greater than 0.
1102
+ input (Tensor): Input Tensor.
1076
1103
 
1077
1104
  Returns:
1078
- Tensor, has the same shape as the `input`, and the dtype changes according to the `input.dtype`.
1079
-
1080
- - if `input.dtype` is in [float16, float32, float64, bfloat16], the output dtype is the same as the `input.dtype`.
1081
- - if `input.dtype` is integer or boolean type, the output dtype is float32.
1105
+ Tensor with the same shape as the input, where elements are `True` if the corresponding element in the `input` is negative infinity, and `False` otherwise.
1082
1106
 
1083
1107
  Raises:
1084
- TypeError: If `input` is not a Tensor.
1108
+ TypeError: If the input is not a tensor.
1085
1109
 
1086
1110
  Supported Platforms:
1087
- ``Ascend``
1111
+ ``Ascend`` ``GPU`` ``CPU``
1088
1112
 
1089
1113
  Examples:
1090
- >>> import mindspore
1091
- >>> import numpy as np
1092
- >>> from mindspore import Tensor, mint
1093
- >>> x = Tensor(np.array([3.0, 5.0, 7.0]), mindspore.float32)
1094
- >>> output = mint.log10(x)
1114
+ >>> from mindspore import ops, Tensor
1115
+ >>> from mindspore import dtype as mstype
1116
+ >>> output = ops.isneginf(Tensor([[-float("inf"), float("inf")], [1, -float("inf")]], mstype.float32))
1095
1117
  >>> print(output)
1096
- [0.47712136 0.69897 0.845098 ]
1118
+ [[ True False]
1119
+ [False True]]
1097
1120
  """
1098
- return log10_impl(input)
1121
+ return isneginf_impl(input)
1099
1122
 
1100
1123
 
1101
- def unfold(input, kernel_size, dilation=1, padding=0, stride=1):
1124
+ def argsort(input, dim=-1, descending=False, stable=False):
1102
1125
  r"""
1103
- Extracts sliding local blocks from a batched input tensor.
1104
-
1105
- Consider a batched input tensor of shape :math:`(N, C, *)`,
1106
- where :math:`N` is the batch dimension, :math:`C` is the channel dimension,
1107
- and :math:`*` represent arbitrary spatial dimensions. This operation flattens
1108
- each sliding `Kernel_size`- sized block within the spatial dimensions
1109
- of `input` into a column (i.e., last dimension) of a 3-D output
1110
- tensor of shape :math:`(N, C \times \prod(\text{kernel_size}), L)`, where
1111
- :math:`C \times \prod(\text{kernel_size})` is the total number of values
1112
- within each block (a block has :math:`\prod(\text{kernel_size})` spatial
1113
- locations each containing a `C`-channeled vector), and :math:`L` is
1114
- the total number of such blocks:
1115
-
1116
- .. math::
1117
- L = \prod_d \left\lfloor\frac{\text{spatial_size}[d] + 2 \times \text{padding}[d] %
1118
- - \text{dilation}[d] \times (\text{kernel_size}[d] - 1) - 1}{\text{stride}[d]} + 1\right\rfloor,
1119
-
1120
- where :math:`\text{spatial_size}` is formed by the spatial dimensions
1121
- of `input` (:math:`*` above), and :math:`d` is over all spatial
1122
- dimensions.
1123
-
1124
- Therefore, indexing `output` at the last dimension (column dimension)
1125
- gives all values within a certain block.
1126
-
1127
- The `dilation`, `padding` and `stride` arguments specify
1128
- how the sliding blocks are retrieved.
1126
+ Sorts the input tensor along the given dimension in specified order and return the sorted indices.
1129
1127
 
1130
1128
  .. warning::
1131
- - Currently, batched(4D) image-like tensors are supported.
1132
- - For Ascend, it is only supported on platforms above Atlas A2.
1129
+ This is an experimental optimizer API that is subject to change.
1133
1130
 
1134
1131
  Args:
1135
- input (Tensor): 4-D Tensor.
1136
- kernel_size (Union[int, tuple[int], list[int]]): The size of the kernel, should be two int
1137
- for height and width. If type is int, it means that height equal with width. Must be specified.
1138
- dilation (Union[int, tuple[int], list[int]], optional): The dilation of the window, should be two int
1139
- for height and width. If type is int, it means that height equal with width. Default: ``1`` .
1140
- padding (Union[int, tuple[int], list[int]], optional): The pad of the window, should be two int
1141
- for height and width. If type is int, it means that height equal with width. Default: ``0`` .
1142
- stride (Union[int, tuple[int], list[int]], optional): The stride of the window, should be two int
1143
- for height and width. If type is int, it means that height equal with width. Default: ``1`` .
1132
+ input(Tensor): The input tensor to sort.
1133
+ dim (int, optional): The dim to sort along. Default: ``-1`` , means the last dimension.
1134
+ The Ascend backend only supports sorting the last dimension.
1135
+ descending (bool, optional): The sort order. If `descending` is ``True`` then the elements
1136
+ are sorted in descending order by value. Otherwise sort in ascending order. Default: ``False`` .
1137
+ stable (bool, optional): Whether to use stable sorting algorithm. Default: ``False``.
1144
1138
 
1145
1139
  Returns:
1146
- A Tensor, with same type as `input` .
1147
-
1148
- Shape:
1149
- - Input: :math:`(N, C, *)`
1150
- - Output: :math:`(N, C \times \prod(\text{kernel_size}), L)`
1140
+ Tensor, the indices of sorted input tensor. Data type is int64.
1151
1141
 
1152
1142
  Raises:
1153
- TypeError: If any data type of `kernel_size`, `stride`, `dilation`, `padding` is not int, tuple or list.
1154
- ValueError: If `kernel_size`, `dilation`, `stride` value is not
1155
- greater than zero or elements number more than `2`.
1156
- ValueError: If `padding` value is less than zero.
1143
+ ValueError: If `dim` is out of range.
1144
+ TypeError: If dtype of `dim` is not int32.
1145
+ TypeError: If dtype of `descending` is not bool.
1146
+ TypeError: If dtype of `stable` is not bool.
1157
1147
 
1158
1148
  Supported Platforms:
1159
1149
  ``Ascend``
@@ -1162,211 +1152,210 @@ def unfold(input, kernel_size, dilation=1, padding=0, stride=1):
1162
1152
  >>> import mindspore
1163
1153
  >>> import numpy as np
1164
1154
  >>> from mindspore import Tensor, ops
1165
- >>> x = Tensor(np.random.rand(4, 4, 32, 32), mindspore.float32)
1166
- >>> output = ops.auto_generate.unfold_ext(x, kernel_size=3, dilation=1, stride=1)
1167
- >>> print(output.shape)
1168
- (4, 36, 900)
1155
+ >>> x = Tensor(np.array([[8, 2, 1], [5, 9, 3], [4, 6, 7]]), mindspore.float16)
1156
+ >>> sort = ops.auto_generate.argsort_ext(x)
1157
+ >>> print(sort)
1158
+ [[2 1 0]
1159
+ [2 0 1]
1160
+ [0 1 2]]
1169
1161
  """
1170
- return unfold_impl(input, converted_kernel_size, converted_dilation, converted_padding, converted_stride)
1162
+ return argsort_impl(input, dim, descending, stable)
1171
1163
 
1172
1164
 
1173
- def prod(input, dim=None, keepdim=False, dtype=None):
1165
+ def max_unpool2d(input, indices, kernel_size, stride=None, padding=0, output_size=None):
1174
1166
  r"""
1175
- Reduces a dimension of a tensor by multiplying all elements in the dimension, by default. And also can
1176
- reduce a dimension of `input` along the `dim`. Determine whether the dimensions of the output and input are the
1177
- same by controlling `keepdim`.
1167
+ Computes the inverse of `max_pool2d`.
1168
+
1169
+ `max_unpool2d` keeps the maximal value and set all position of non-maximal values to zero. Typically the input is of shape :math:`(N, C, H_{in}, W_{in})` or :math:`(C, H_{in}, W_{in})`, and the output is of shape :math:`(N, C, H_{out}, W_{out})` or :math:`(C, H_{out}, W_{out})`. The operation is as follows.
1170
+
1171
+ .. math::
1172
+ \begin{array}{ll} \\
1173
+ H_{out} = (H_{in} - 1) \times stride[0] - 2 \times padding[0] + kernel\_size[0] \\
1174
+ W_{out} = (W_{in} - 1) \times stride[1] - 2 \times padding[1] + kernel\_size[1] \\
1175
+ \end{array}
1176
+
1177
+ .. warning::
1178
+ This is an experimental API that is subject to change or deletion.
1178
1179
 
1179
1180
  Args:
1180
- input (Tensor[Number]): The input tensor. The dtype of the tensor to be reduced is number.
1181
- :math:`(N, *)` where :math:`*` means, any number of additional dimensions.
1182
- dim (int): The dimensions to reduce. Default: ``None`` , reduce all dimensions.
1183
- Only constant value is allowed. Assume the rank of `input` is r, and the value range is [-r,r).
1184
- keepdim (bool): If ``True`` , keep these reduced dimensions and the length is 1.
1185
- If ``False`` , don't keep these dimensions. Default: ``False`` .
1186
- dtype (:class:`mindspore.dtype`): The desired data type of returned Tensor. Default: ``None`` .
1181
+ input (Tensor): The input Tensor to invert. Tensor of shape :math:`(N, C, H_{in}, W_{in})` or :math:`(C, H_{in}, W_{in})`.
1182
+ indices (Tensor): Max values' index represented by the indices. Tensor of shape must be same with input 'input'. Values of indices must belong to :math:`[0, H_{in} \times W_{in} - 1]`. Data type must be in int32 or int64.
1183
+ kernel_size (Union[int, tuple[int]]): The size of kernel used to take the maximum value, an int number that represents height and width of the kernel, or a tuple of two int numbers that represent height and width respectively.
1184
+ stride (Union[int, tuple[int]], optional): The distance of kernel moving, an int number that represents the height and width of movement are both stride, or a tuple of two int numbers that represent height and width of movement respectively. Default: ``None`` , which indicates the moving step is `kernel_size` .
1185
+ padding (Union[int, tuple[int]], optional): The pad value to be filled. Default: ``0`` . If `padding` is an integer, the paddings of height and width are the same, equal to padding. If `padding` is a tuple of two integers, the padding of height and width equal to padding[0] and padding[1] correspondingly.
1186
+ output_size (tuple[int], optional): The target output size. Default: ``None`` . If output_size == (), then the shape of output computed by `kernel_size`, `stride` and `padding`. If output_size != (), then output_size must be :math:`(N, C, H, W)` , :math:`(C, H, W)` or :math:`(H, W)` and output_size must belong to :math:`[(N, C, H_{out} - stride[0], W_{out} - stride[1]), (N, C, H_{out} + stride[0], W_{out} + stride[1])]`.
1187
1187
 
1188
1188
  Returns:
1189
- Tensor, has the same data type as input tensor.
1190
-
1191
- - If `dim` is ``None`` , and `keepdim` is ``False`` ,
1192
- the output is a 0-D tensor representing the product of all elements in the input tensor.
1193
- - If `dim` is int, set as 1, and `keepdim` is ``False`` ,
1194
- the shape of output is :math:`(input_0, input_2, ..., input_R)`.
1189
+ Tensor, with shape :math:`(N, C, H_{out}, W_{out})` or :math:`(C, H_{out}, W_{out})`, with the same data type with `input`.
1195
1190
 
1196
1191
  Raises:
1197
- TypeError: If `input` is not a Tensor.
1198
- TypeError: If `dim` is not one of the following: int or None.
1199
- TypeError: If `keepdim` is not a bool.
1200
- ValueError: If `dim` is out of range.
1192
+ TypeError: If data type of `input` or `indices` is not supported.
1193
+ TypeError: If `kernel_size`, `stride` or `padding` is neither an int nor a tuple.
1194
+ ValueError: If numbers in `stride`, `padding` or `kernel_size` are not positive.
1195
+ ValueError: If the shapes of `input` and `indices` are different.
1196
+ ValueError: If the length of `input` is not 3 or 4.
1197
+ ValueError: If the type of `output_size` is not tuple.
1198
+ ValueError: If `output_size` is not close to output size computed by attr `kernel_size`, `stride`, `padding`.
1201
1199
 
1202
1200
  Supported Platforms:
1203
- ``Ascend`` ``GPU`` ``CPU``
1201
+ ``Ascend``
1204
1202
 
1205
1203
  Examples:
1206
- >>> import mindspore
1207
1204
  >>> import numpy as np
1208
1205
  >>> from mindspore import Tensor, ops
1209
- >>> x = Tensor(np.random.randn(3, 4, 5, 6).astype(np.float32))
1210
- >>> output = ops.prod_ext(x, 1, keepdim=True)
1211
- >>> result = output.shape
1212
- >>> print(result)
1213
- (3, 1, 5, 6)
1214
- >>> # case 1: Reduces a dimension by multiplying all elements in the dimension.
1215
- >>> x = Tensor(np.array([[[1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3]],
1216
- ... [[4, 4, 4, 4, 4, 4], [5, 5, 5, 5, 5, 5], [6, 6, 6, 6, 6, 6]],
1217
- ... [[7, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8], [9, 9, 9, 9, 9, 9]]]), mindspore.float32)
1218
- >>> output = ops.prod_ext(x)
1219
- >>> print(output)
1220
- 2.2833798e+33
1221
- >>> print(output.shape)
1222
- ()
1223
- >>> # case 2: Reduces a dimension along dim 0.
1224
- >>> output = ops.prod_ext(x, 0, True)
1225
- >>> print(output)
1226
- [[[ 28. 28. 28. 28. 28. 28.]
1227
- [ 80. 80. 80. 80. 80. 80.]
1228
- [162. 162. 162. 162. 162. 162.]]]
1229
- >>> # case 3: Reduces a dimension along dim 1.
1230
- >>> output = ops.prod_ext(x, 1, True)
1231
- >>> print(output)
1232
- [[[ 6. 6. 6. 6. 6. 6.]]
1233
- [[120. 120. 120. 120. 120. 120.]]
1234
- [[504. 504. 504. 504. 504. 504.]]]
1235
- >>> # case 4: Reduces a dimension along dim 2.
1236
- >>> output = ops.prod_ext(x, 2, True)
1237
- >>> print(output)
1238
- [[[1.00000e+00]
1239
- [6.40000e+01]
1240
- [7.29000e+02]]
1241
- [[4.09600e+03]
1242
- [1.56250e+04]
1243
- [4.66560e+04]]
1244
- [[1.17649e+05]
1245
- [2.62144e+05]
1246
- [5.31441e+05]]]
1206
+ >>> input = Tensor(np.array([[[[0, 1], [8, 9]]]]).astype(np.float32))
1207
+ >>> indices = Tensor(np.array([[[[0, 1], [2, 3]]]]).astype(np.int64))
1208
+ >>> output = ops.max_unpool2d_ext(input, indices, 1, stride=1, padding=0)
1209
+ >>> print(output.asnumpy())
1210
+ [[[[0. 1.]
1211
+ [8. 9.]]]]
1247
1212
  """
1248
- return prod_impl(input, dim, keepdim, dtype)
1213
+ return max_unpool2d_impl(input, indices, kernel_size, stride, padding, output_size)
1249
1214
 
1250
1215
 
1251
- def add(input, other, alpha=1):
1216
+ def asin(input):
1252
1217
  r"""
1253
- Adds scaled other value to input Tensor.
1218
+ Computes arcsine of input tensors element-wise.
1254
1219
 
1255
1220
  .. math::
1256
1221
 
1257
- out_{i} = input_{i} + alpha \times other_{i}
1258
-
1259
- Note:
1260
- - When the two inputs have different shapes,
1261
- they must be able to broadcast to a common shape.
1262
- - The two inputs and alpha comply with the implicit type conversion rules to make the data types
1263
- consistent.
1222
+ out_i = \sin^{-1}(input_i)
1264
1223
 
1265
1224
  Args:
1266
- input (Union[Tensor, number.Number, bool]): The first input is a number.Number or
1267
- a bool or a tensor whose data type is
1268
- `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
1269
- `bool_ <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
1270
- other (Union[Tensor, number.Number, bool]): The second input, is a number.Number or
1271
- a bool or a tensor whose data type is
1272
- `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
1273
- `bool_ <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
1274
- alpha (number.Number): A scaling factor applied to `other`, default 1.
1225
+ input (Tensor): The shape of tensor is
1226
+ :math:`(N,*)`, where :math:`*` means any number of additional dimensions.
1275
1227
 
1276
1228
  Returns:
1277
- Tensor with a shape that is the same as the broadcasted shape of the input `input` and `other`,
1278
- and the data type is the one with higher precision or higher digits among the two inputs and alpha.
1229
+ Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
1279
1230
 
1280
1231
  Raises:
1281
- TypeError: If the type of `input`, `other`, or `alpha` is not one of the following: Tensor, number.Number, bool.
1282
- TypeError: If `alpha` is of type float but `input` and `other` are not of type float.
1283
- TypeError: If `alpha` is of type bool but `input` and `other` are not of type bool.
1232
+ TypeError: If `input` is not a Tensor.
1284
1233
 
1285
1234
  Supported Platforms:
1286
1235
  ``Ascend`` ``GPU`` ``CPU``
1287
1236
 
1288
1237
  Examples:
1289
- >>> import numpy as np
1290
1238
  >>> import mindspore
1291
- >>> from mindspore import Tensor
1292
- >>> from mindspore import ops
1293
- >>> x = Tensor(1, mindspore.int32)
1294
- >>> y = Tensor(np.array([4, 5, 6]).astype(np.float32))
1295
- >>> alpha = 0.5
1296
- >>> output = ops.auto_generate.add_ext(x, y, alpha)
1239
+ >>> import numpy as np
1240
+ >>> from mindspore import Tensor, ops
1241
+ >>> input = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32)
1242
+ >>> output = ops.asin_ext(input)
1297
1243
  >>> print(output)
1298
- [3. 3.5 4.]
1299
- >>> # the data type of x is int32, the data type of y is float32,
1300
- >>> # alpha is a float, and the output is the data format of higher precision float32.
1301
- >>> print(output.dtype)
1302
- Float32
1244
+ [0.8330927 0.04001068 0.30469266 0.59438497 ]
1303
1245
  """
1304
- return add_impl(input, other, alpha)
1246
+ return asin_impl(input)
1305
1247
 
1306
1248
 
1307
- def asinh(input):
1249
+ def index_select(input, dim, index):
1308
1250
  r"""
1309
- Computes inverse hyperbolic sine of the input element-wise.
1310
-
1311
- .. math::
1251
+ Generates a new Tensor that accesses the values of `input` along the specified `dim` dimension
1252
+ using the indices specified in `index`. The new Tensor has the same number of dimensions as `input`,
1253
+ with the size of the `dim` dimension being equal to the length of `index`, and the size of all other
1254
+ dimensions will be unchanged from the original `input` Tensor.
1312
1255
 
1313
- out_i = \sinh^{-1}(input_i)
1256
+ .. note::
1257
+ The value of index must be in the range of `[0, input.shape[dim])`, the result is undefined out of range.
1314
1258
 
1315
1259
  Args:
1316
- input (Tensor): The input tensor of inverse hyperbolic sine function.
1260
+ input (Tensor): The input Tensor.
1261
+ dim (int): The dimension to be indexed.
1262
+ index (Tensor): A 1-D Tensor with the indices.
1317
1263
 
1318
1264
  Returns:
1319
- Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
1265
+ Tensor, has the same dtype as input Tensor.
1320
1266
 
1321
1267
  Raises:
1322
- TypeError: If `input` is not a Tensor.
1268
+ TypeError: If `input` or `index` is not a Tensor.
1269
+ TypeError: If `dim` is not int number.
1270
+ ValueError: If the value of `dim` is out the range of `[-input.ndim, input.ndim - 1]`.
1271
+ ValueError: If the dimension of `index` is not equal to 1.
1323
1272
 
1324
1273
  Supported Platforms:
1325
- ``Ascend`` ``GPU`` ``CPU``
1274
+ ``Ascend``
1326
1275
 
1327
1276
  Examples:
1328
1277
  >>> import mindspore
1329
- >>> import numpy as np
1330
1278
  >>> from mindspore import Tensor, ops
1331
- >>> input = Tensor(np.array([-5.0, 1.5, 3.0, 100.0]), mindspore.float32)
1332
- >>> output = ops.asinh_ext(input)
1333
- >>> print(output)
1334
- [-2.3124385 1.1947632 1.8184465 5.298342 ]
1279
+ >>> import numpy as np
1280
+ >>> input = Tensor(np.arange(16).astype(np.float32).reshape(2, 2, 4))
1281
+ >>> print(input)
1282
+ [[[ 0. 1. 2. 3.]
1283
+ [ 4. 5. 6. 7.]]
1284
+ [[ 8. 9. 10. 11.]
1285
+ [12. 13. 14. 15.]]]
1286
+ >>> index = Tensor([0,], mindspore.int32)
1287
+ >>> y = ops.auto_generate.index_select_ext(input, 1, index)
1288
+ >>> print(y)
1289
+ [[[ 0. 1. 2. 3.]]
1290
+ [[ 8. 9. 10. 11.]]]
1335
1291
  """
1336
- return asinh_impl(input)
1292
+ return index_select_impl(input, dim, index)
1337
1293
 
1338
1294
 
1339
- def acos(input):
1295
+ def l1_loss(input, target, reduction='mean'):
1340
1296
  r"""
1341
- Computes arccosine of input tensors element-wise.
1297
+ Calculate the mean absolute error between the `input` value and the `target` value.
1298
+
1299
+ Assuming that the :math:`x` and :math:`y` are the predicted value and target value,
1300
+ both are one-dimensional tensors of length :math:`N`, length :math:`N`, `reduction` is set to ``'none'`` ,
1301
+ then calculate the loss of :math:`x` and :math:`y` without dimensionality reduction.
1302
+
1303
+ The formula is as follows:
1342
1304
 
1343
1305
  .. math::
1306
+ \ell(x, y) = L = \{l_1,\dots,l_N\}^\top, \quad \text{with } l_n = \left| x_n - y_n \right|,
1344
1307
 
1345
- out_i = \cos^{-1}(input_i)
1308
+ where :math:`N` is the batch size.
1309
+
1310
+ If `reduction` is ``'mean'`` or ``'sum'`` , then:
1311
+
1312
+ .. math::
1313
+ \ell(x, y) =
1314
+ \begin{cases}
1315
+ \operatorname{mean}(L), & \text{if reduction} = \text{'mean';}\\
1316
+ \operatorname{sum}(L), & \text{if reduction} = \text{'sum'.}
1317
+ \end{cases}
1318
+
1319
+ Args:
1320
+ input (Tensor): Predicted value, Tensor of any dimension.
1321
+ target (Tensor): Target value, usually has the same shape as the `input`.
1322
+ If `input` and `target` have different shapes, make sure they can broadcast to each other.
1323
+ reduction (str, optional): Apply specific reduction method to the output: ``'none'`` , ``'mean'`` ,
1324
+ ``'sum'`` . Default: ``'mean'`` .
1346
1325
 
1347
- Args:
1348
- input (Tensor): The shape of tensor is
1349
- :math:`(N,*)`, where :math:`*` means any number of additional dimensions.
1326
+ - ``'none'``: no reduction will be applied.
1327
+ - ``'mean'``: compute and return the mean of elements in the output. Notice: At least one of the input and target is float type when the reduction is ``'mean'`` .
1328
+ - ``'sum'``: the output elements will be summed.
1350
1329
 
1351
1330
  Returns:
1352
- Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
1331
+ Tensor or Scalar, if `reduction` is ``'none'`` , return a Tensor with same shape and dtype as `input`.
1332
+ Otherwise, a scalar value will be returned.
1353
1333
 
1354
1334
  Raises:
1355
1335
  TypeError: If `input` is not a Tensor.
1336
+ TypeError: If `target` is not a Tensor.
1337
+ ValueError: If `reduction` is not one of ``'none'`` , ``'mean'`` or ``'sum'`` .
1356
1338
 
1357
1339
  Supported Platforms:
1358
- ``Ascend`` ``GPU`` ``CPU``
1340
+ ``Ascend``
1359
1341
 
1360
1342
  Examples:
1361
- >>> import mindspore
1362
- >>> import numpy as np
1363
1343
  >>> from mindspore import Tensor, ops
1364
- >>> input = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32)
1365
- >>> output = ops.acos_ext(input)
1344
+ >>> from mindspore import dtype as mstype
1345
+ >>> x = Tensor([[1, 2, 3], [4, 5, 6]], mstype.float32)
1346
+ >>> target = Tensor([[6, 5, 4], [3, 2, 1]], mstype.float32)
1347
+ >>> output = ops.l1_loss_ext(x, target, reduction="mean")
1366
1348
  >>> print(output)
1367
- [0.7377037 1.5307857 1.2661037 0.9764114]
1349
+ 3.0
1368
1350
  """
1369
- return acos_impl(input)
1351
+ return l1_loss_impl(input, target, converted_reduction)
1352
+
1353
+
1354
+ def adaptive_avg_pool3d(input, output_size):
1355
+ r"""
1356
+ None
1357
+ """
1358
+ return adaptive_avg_pool3d_impl(input, output_size)
1370
1359
 
1371
1360
 
1372
1361
  def histc(input, bins=100, min=0, max=0):
@@ -1412,48 +1401,60 @@ def histc(input, bins=100, min=0, max=0):
1412
1401
  return histc_impl(input, bins, min, max)
1413
1402
 
1414
1403
 
1415
- def mm(input, mat2):
1404
+ def inplace_adds(input, other, alpha=1):
1416
1405
  r"""
1417
- Returns the matrix product of two arrays.
1418
- If `input` is a :math:`(n \times m)` Tensor, `mat2` is a
1419
- :math:`(m \times p)` Tensor, `out` will be a :math:`(n \times p)` Tensor.
1420
-
1421
- Note:
1422
- This function cannot support broadcasting.
1423
- Refer to :func:`mindspore.ops.matmul` instead if you need a broadcastable function.
1406
+ None
1407
+ """
1408
+ return inplace_adds_impl(input, other, alpha)
1409
+
1410
+
1411
+ def t(input):
1412
+ r"""
1413
+ Transpose the input tensor.
1424
1414
 
1425
1415
  .. warning::
1426
1416
  This is an experimental API that is subject to change or deletion.
1427
1417
 
1428
1418
  Args:
1429
- input (Tensor): The first matrix of matrix multiplication.
1430
- The last dimension of `input` must be the same size as the first dimension of `mat2`.
1431
- mat2 (Tensor): The second matrix of matrix multiplication.
1432
- The last dimension of `input` must be the same size as the first dimension of `mat2`.
1419
+ input (Tensor): The input tensor.
1433
1420
 
1434
1421
  Returns:
1435
- Tensor, the matrix product of the inputs.
1422
+ Tensor, transpose 2D tensor, return 1D tensor as it is.
1436
1423
 
1437
1424
  Raises:
1438
- ValueError: If the last dimension of `input` is not the same size as the
1439
- second-to-last dimension of `mat2`.
1440
- TypeError: If `input` or `mat2` is not a Tensor.
1441
- TypeError: If dtype of `input` or `mat2` is not float16, float32 or bfloat16.
1425
+ ValueError: If the dimension of `input` is greater than 2.
1426
+ ValueError: If `input` is empty.
1427
+ TypeError: If `input` is not a tensor.
1442
1428
 
1443
1429
  Supported Platforms:
1444
1430
  ``Ascend``
1445
1431
 
1446
1432
  Examples:
1447
- >>> import mindspore as ms
1448
- >>> from mindspore import ops
1433
+ >>> import mindspore
1449
1434
  >>> import numpy as np
1450
- >>> x1 = ms.Tensor(np.random.rand(2, 3), ms.float32)
1451
- >>> x2 = ms.Tensor(np.random.rand(3, 4), ms.float32)
1452
- >>> out = ops.mm_ext(x1, x2)
1453
- >>> print(out.shape)
1454
- (2, 4)
1435
+ >>> from mindspore import Tensor, ops
1436
+ >>> input = Tensor(np.array([[1, 2, 3], [4, 5, 6]]), mindspore.float32)
1437
+ >>> output = ops.t_ext(input)
1438
+ >>> print(output)
1439
+ [[ 1. 4.]
1440
+ [ 2. 5.]
1441
+ [ 3. 6.]]
1455
1442
  """
1456
- return mm_impl(input, mat2)
1443
+ return t_impl(input)
1444
+
1445
+
1446
+ def sub_tensor_(input, other, alpha=1):
1447
+ r"""
1448
+ None
1449
+ """
1450
+ return sub_tensor_impl(input, other, alpha)
1451
+
1452
+
1453
+ def ffn(x, weight1, weight2, expertTokens=None, bias1=None, bias2=None, scale=None, offset=None, deqScale1=None, deqScale2=None, antiquant_scale1=None, antiquant_scale2=None, antiquant_offset1=None, antiquant_offset2=None, activation='fastgelu', inner_precise=0):
1454
+ r"""
1455
+ None
1456
+ """
1457
+ return ffn_impl(x, weight1, weight2, expertTokens, bias1, bias2, scale, offset, deqScale1, deqScale2, antiquant_scale1, antiquant_scale2, antiquant_offset1, antiquant_offset2, converted_activation, inner_precise)
1457
1458
 
1458
1459
 
1459
1460
  def fold(input, output_size, kernel_size, dilation=1, padding=0, stride=1):
@@ -1522,384 +1523,313 @@ def fold(input, output_size, kernel_size, dilation=1, padding=0, stride=1):
1522
1523
  return fold_impl(input, converted_output_size, converted_kernel_size, converted_dilation, converted_padding, converted_stride)
1523
1524
 
1524
1525
 
1525
- def logaddexp(input, other):
1526
+ def acos(input):
1526
1527
  r"""
1527
- Computes the logarithm of the sum of exponentiations of the inputs.
1528
- This function is useful in statistics where the calculated probabilities of events may be
1529
- so small as to exceed the range of normal floating point numbers.
1528
+ Computes arccosine of input tensors element-wise.
1530
1529
 
1531
1530
  .. math::
1532
1531
 
1533
- out_i = \log(exp(input_i) + \exp(other_i))
1534
-
1535
- .. warning::
1536
- This is an experimental API that is subject to change or deletion.
1532
+ out_i = \cos^{-1}(input_i)
1537
1533
 
1538
1534
  Args:
1539
- input (Tensor): Input Tensor. The dtype of `input` must be float.
1540
- other (Tensor): Input Tensor. The dtype of `other` must be float.
1541
- If the shape of `input` is not equal to the shape of `other`,
1542
- they must be broadcastable to a common shape.
1535
+ input (Tensor): The shape of tensor is
1536
+ :math:`(N,*)`, where :math:`*` means any number of additional dimensions.
1543
1537
 
1544
1538
  Returns:
1545
- Tensor, with the same dtype as `input` and `other`.
1539
+ Tensor, has the same shape as `input`. The dtype of output is float32 when dtype of `input` is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as `input`.
1546
1540
 
1547
1541
  Raises:
1548
- TypeError: If `input` or `other` is not a Tensor.
1549
- TypeError: The dtype of `input` or `other` is not float.
1542
+ TypeError: If `input` is not a Tensor.
1550
1543
 
1551
1544
  Supported Platforms:
1552
- ``Ascend``
1545
+ ``Ascend`` ``GPU`` ``CPU``
1553
1546
 
1554
1547
  Examples:
1548
+ >>> import mindspore
1555
1549
  >>> import numpy as np
1556
1550
  >>> from mindspore import Tensor, ops
1557
- >>> x1 = Tensor(np.array([1, 2, 3]).astype(np.float16))
1558
- >>> x2 = Tensor(np.array(2).astype(np.float16))
1559
- >>> output = ops.logaddexp_ext(x1, x2)
1551
+ >>> input = Tensor(np.array([0.74, 0.04, 0.30, 0.56]), mindspore.float32)
1552
+ >>> output = ops.acos_ext(input)
1560
1553
  >>> print(output)
1561
- [2.312 2.693 3.312]
1554
+ [0.7377037 1.5307857 1.2661037 0.9764114]
1562
1555
  """
1563
- return logaddexp_impl(input, other)
1556
+ return acos_impl(input)
1564
1557
 
1565
1558
 
1566
- def bmm(input, mat2):
1559
+ def selu(input):
1567
1560
  r"""
1568
- Performs batch matrix-matrix multiplication of two three-dimensional tensors.
1561
+ Activation function SELU (Scaled exponential Linear Unit).
1562
+
1563
+ The activation function is defined as:
1569
1564
 
1570
1565
  .. math::
1571
- \text{output}= \text{input} @ \text{mat2}
1566
+ E_{i} =
1567
+ scale *
1568
+ \begin{cases}
1569
+ x_{i}, &\text{if } x_{i} \geq 0; \cr
1570
+ \text{alpha} * (\exp(x_i) - 1), &\text{otherwise.}
1571
+ \end{cases}
1572
+
1573
+ where :math:`alpha` and :math:`scale` are pre-defined constants(:math:`alpha=1.67326324`
1574
+ and :math:`scale=1.05070098`).
1575
+
1576
+ See more details in `Self-Normalizing Neural Networks <https://arxiv.org/abs/1706.02515>`_.
1577
+
1578
+ SELU Activation Function Graph:
1579
+
1580
+ .. image:: ../images/SeLU.png
1581
+ :align: center
1572
1582
 
1573
1583
  Args:
1574
- input (Tensor): The first batch of matrices to be multiplied. Must be a three-dimensional tensor of shape `(b, n, m)`.
1575
- mat2 (Tensor): The second batch of matrices to be multiplied. Must be a three-dimensional tensor of shape `(b, m, p)`.
1584
+ input (Tensor): Tensor of any dimension.
1585
+ The data type is float16, float32, bfloat16.
1576
1586
 
1577
1587
  Returns:
1578
- Tensor, the output tensor of shape `(b, n, p)`, where each matrix is the product of the corresponding matrices in the input batches.
1588
+ Tensor, with the same type and shape as the `input`.
1579
1589
 
1580
1590
  Raises:
1581
- ValueError: If `input` or `mat2` is not three-dimensional tensors.
1582
- ValueError: If the length of the third dimension of `input` is not equal to the length of the second dimension of `mat2`.
1583
- ValueError: If the batch size of the inputs is not equal to the batch size of the mat2.
1591
+ TypeError: If dtype of `input` is not float16, float32, bfloat16.
1584
1592
 
1585
1593
  Supported Platforms:
1586
- ``Ascend`` ``GPU`` ``CPU``
1594
+ ``Ascend``
1587
1595
 
1588
1596
  Examples:
1589
1597
  >>> import mindspore
1598
+ >>> from mindspore import Tensor, ops
1590
1599
  >>> import numpy as np
1591
- >>> from mindspore import Tensor
1592
- >>> from mindspore import ops
1593
- >>> a = Tensor(np.ones(shape=[2, 3, 4]), mindspore.float32)
1594
- >>> b = Tensor(np.ones(shape=[2, 4, 5]), mindspore.float32)
1595
- >>> output = ops.auto_generate.bmm_ext(a, b)
1600
+ >>> input = Tensor(np.array([[-1.0, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
1601
+ >>> output = ops.auto_generate.selu_ext(input)
1596
1602
  >>> print(output)
1597
- [[[4. 4. 4. 4. 4.]
1598
- [4. 4. 4. 4. 4.]
1599
- [4. 4. 4. 4. 4.]]
1600
- [[4. 4. 4. 4. 4.]
1601
- [4. 4. 4. 4. 4.]
1602
- [4. 4. 4. 4. 4.]]]
1603
+ [[-1.1113307 4.202804 -1.7575096]
1604
+ [ 2.101402 -1.7462534 9.456309 ]]
1603
1605
  """
1604
- return bmm_impl(input, mat2)
1606
+ return selu_impl(input)
1605
1607
 
1606
1608
 
1607
- def l1_loss(input, target, reduction='mean'):
1609
+ def diag(input, diagonal=0):
1608
1610
  r"""
1609
- Calculate the mean absolute error between the `input` value and the `target` value.
1611
+ If input is a vector (1-D tensor), then returns a 2-D square tensor with the elements of input as the diagonal.
1610
1612
 
1611
- Assuming that the :math:`x` and :math:`y` are the predicted value and target value,
1612
- both are one-dimensional tensors of length :math:`N`, length :math:`N`, `reduction` is set to ``'none'`` ,
1613
- then calculate the loss of :math:`x` and :math:`y` without dimensionality reduction.
1613
+ If input is a matrix (2-D tensor), then returns a 1-D tensor with the diagonal elements of input.
1614
1614
 
1615
- The formula is as follows:
1615
+ The argument diagonal controls which diagonal to consider:
1616
1616
 
1617
- .. math::
1618
- \ell(x, y) = L = \{l_1,\dots,l_N\}^\top, \quad \text{with } l_n = \left| x_n - y_n \right|,
1617
+ - If `diagonal` = 0, it is the main diagonal.
1619
1618
 
1620
- where :math:`N` is the batch size.
1619
+ - If `diagonal` > 0, it is above the main diagonal.
1621
1620
 
1622
- If `reduction` is ``'mean'`` or ``'sum'`` , then:
1621
+ - If `diagonal` < 0, it is below the main diagonal.
1623
1622
 
1624
- .. math::
1625
- \ell(x, y) =
1626
- \begin{cases}
1627
- \operatorname{mean}(L), & \text{if reduction} = \text{'mean';}\\
1628
- \operatorname{sum}(L), & \text{if reduction} = \text{'sum'.}
1629
- \end{cases}
1623
+ .. warning::
1624
+ This is an experimental API that is subject to change or deletion.
1630
1625
 
1631
1626
  Args:
1632
- input (Tensor): Predicted value, Tensor of any dimension.
1633
- target (Tensor): Target value, usually has the same shape as the `input`.
1634
- If `input` and `target` have different shapes, make sure they can broadcast to each other.
1635
- reduction (str, optional): Apply specific reduction method to the output: ``'none'`` , ``'mean'`` ,
1636
- ``'sum'`` . Default: ``'mean'`` .
1637
-
1638
- - ``'none'``: no reduction will be applied.
1639
- - ``'mean'``: compute and return the mean of elements in the output. Notice: At least one of the input and target is float type when the reduction is ``'mean'`` .
1640
- - ``'sum'``: the output elements will be summed.
1627
+ input (Tensor): The input tensor.
1628
+ diagonal (int, optional): the diagonal to consider. Defaults: ``0``.
1641
1629
 
1642
1630
  Returns:
1643
- Tensor or Scalar, if `reduction` is ``'none'`` , return a Tensor with same shape and dtype as `input`.
1644
- Otherwise, a scalar value will be returned.
1645
-
1646
- Raises:
1647
- TypeError: If `input` is not a Tensor.
1648
- TypeError: If `target` is not a Tensor.
1649
- ValueError: If `reduction` is not one of ``'none'`` , ``'mean'`` or ``'sum'`` .
1650
-
1651
- Supported Platforms:
1652
- ``Ascend``
1653
-
1654
- Examples:
1655
- >>> from mindspore import Tensor, ops
1656
- >>> from mindspore import dtype as mstype
1657
- >>> x = Tensor([[1, 2, 3], [4, 5, 6]], mstype.float32)
1658
- >>> target = Tensor([[6, 5, 4], [3, 2, 1]], mstype.float32)
1659
- >>> output = ops.l1_loss_ext(x, target, reduction="mean")
1660
- >>> print(output)
1661
- 3.0
1662
- """
1663
- return l1_loss_impl(input, target, converted_reduction)
1664
-
1665
-
1666
- def cummin(input, dim):
1667
- r"""
1668
- Returns a tuple (values, indices) where `values` is the cumulative minimum value of input Tensor `input`
1669
- along the dimension `dim`, and `indices` is the index location of each minimum value.
1670
-
1671
- .. math::
1672
- \begin{array}{ll} \\
1673
- y_{i} = \min(x_{1}, x_{2}, ... , x_{i})
1674
- \end{array}
1675
-
1676
- .. note::
1677
- O2 mode is not supported in Ascend.
1631
+ Tensor, has the same dtype as the `input`, its shape is up to `diagonal`.
1678
1632
 
1679
- Args:
1680
- input (Tensor): The input Tensor, The dimension must be greater than 0.
1681
- dim (int): Operation dimension. The value of `dim` must be in the range `[-input.ndim, input.ndim - 1]`.
1633
+ - If `input` shape is :math:`(x_0)` : then output shape is :math:`(x_0 + \left | diagonal \right | , x_0 + \left | diagonal \right | )` 2-D Tensor.
1682
1634
 
1683
- Returns:
1684
- tuple [Tensor], tuple of 2 Tensors, containing the cumulative minimum of elements and the index.
1685
- The shape of each output tensor is the same as that of input `input`.
1635
+ - If `input` shape is :math:`(x_0, x_1)` : then output shape is main diagonal to move :math:`(\left | diagonal \right |)` elements remains elements' length 1-D Tensor.
1686
1636
 
1687
1637
  Raises:
1688
1638
  TypeError: If `input` is not a Tensor.
1689
- TypeError: If `input` is a Tensor, but the type is complex or bool.
1690
- TypeError: If `dim` is not an int.
1691
- ValueError: If `dim` is out the range of `[-input.ndim, input.ndim - 1]`.
1639
+ ValueError: If shape of `input` is not 1-D and 2-D.
1692
1640
 
1693
1641
  Supported Platforms:
1694
1642
  ``Ascend``
1695
1643
 
1696
1644
  Examples:
1697
1645
  >>> from mindspore import Tensor, ops
1698
- >>> import mindspore
1699
- >>> a = Tensor([-0.2284, -0.6628, 0.0975, 0.2680, -1.3298, -0.4220], mindspore.float32)
1700
- >>> output = ops.cummin_ext(a, dim=0)
1701
- >>> print(output[0])
1702
- [-0.2284 -0.6628 -0.6628 -0.6628 -1.3298 -1.3298]
1703
- >>> print(output[1])
1704
- [0 1 1 1 4 4]
1646
+ >>> input = Tensor([1, 2, 3, 4]).astype('int32')
1647
+ >>> output = ops.auto_generate.diag_ext(input)
1648
+ >>> print(output)
1649
+ [[1 0 0 0]
1650
+ [0 2 0 0]
1651
+ [0 0 3 0]
1652
+ [0 0 0 4]]
1705
1653
  """
1706
- return cummin_impl(input, dim)
1654
+ return diag_impl(input, diagonal)
1707
1655
 
1708
1656
 
1709
- def softplus(input, beta=1, threshold=20):
1657
+ def sub(input, other, alpha=1):
1710
1658
  r"""
1711
- Applies softplus function to `input` element-wise.
1712
-
1713
- The softplus function is shown as follows, x is the element of `input` :
1659
+ Subtracts scaled other value from input Tensor.
1714
1660
 
1715
1661
  .. math::
1716
1662
 
1717
- \text{output} = \frac{1}{beta}\log(1 + \exp(\text{beta * x}))
1663
+ out_{i} = input_{i} - alpha \times other_{i}
1718
1664
 
1719
- where :math:`input * beta > threshold`, the implementation converts to the linear function to ensure numerical stability.
1665
+ Note:
1666
+ - When the two inputs have different shapes,
1667
+ they must be able to broadcast to a common shape.
1668
+ - The two inputs and alpha comply with the implicit type conversion rules to make the data types
1669
+ consistent.
1720
1670
 
1721
1671
  Args:
1722
- input (Tensor): Tensor of any dimension. Supported dtypes:
1723
-
1724
- - Ascend: float16, float32, bfloat16.
1725
- beta (number.Number, optional): Scaling parameters in the softplus function. Default: ``1`` .
1726
- threshold (number.Number, optional): For numerical stability, the softplus function is converted
1727
- to a threshold parameter of a linear function. Default: ``20`` .
1672
+ input (Union[Tensor, number.Number, bool]): The first input is a number.Number or
1673
+ a bool or a tensor whose data type is
1674
+ `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
1675
+ `bool <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
1676
+ other (Union[Tensor, number.Number, bool]): The second input, is a number.Number or
1677
+ a bool or a tensor whose data type is
1678
+ `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
1679
+ `bool <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
1680
+ alpha (number.Number): A scaling factor applied to `other`, default 1.
1728
1681
 
1729
1682
  Returns:
1730
- Tensor, with the same type and shape as the input.
1683
+ Tensor with a shape that is the same as the broadcasted shape of the input `input` and `other`,
1684
+ and the data type is the one with higher precision or higher digits among the two inputs and alpha.
1731
1685
 
1732
1686
  Raises:
1733
- TypeError: If `input` is not a Tensor.
1734
- TypeError: If dtype of `input` is not float16, float32, bfloat16.
1687
+ TypeError: If the type of `input`, `other`, or `alpha` is not one of the following: Tensor, number.Number, bool.
1688
+ TypeError: If `alpha` is of type float but `input` and `other` are not of type float.
1689
+ TypeError: If `alpha` is of type bool but `input` and `other` are not of type bool.
1735
1690
 
1736
1691
  Supported Platforms:
1737
- ``Ascend``
1692
+ ``Ascend`` ``GPU`` ``CPU``
1738
1693
 
1739
1694
  Examples:
1740
- >>> import mindspore
1741
1695
  >>> import numpy as np
1742
- >>> from mindspore import Tensor, ops
1743
- >>> input = Tensor(np.array([0.1, 0.2, 30, 25]), mindspore.float32)
1744
- >>> output = ops.auto_generate.softplus_ext(input)
1696
+ >>> import mindspore
1697
+ >>> from mindspore import Tensor
1698
+ >>> from mindspore import ops
1699
+ >>> x = Tensor(np.array([4, 5, 6]).astype(np.float32))
1700
+ >>> y = Tensor(1, mindspore.int32)
1701
+ >>> alpha = 0.5
1702
+ >>> output = ops.auto_generate.sub_ext(x, y, alpha)
1745
1703
  >>> print(output)
1746
- [0.74439657 0.7981388 30. 25.]
1704
+ [3.5 4.5 5.5]
1705
+ >>> # the data type of x is float32, the data type of y is int32,
1706
+ >>> # alpha is a float, and the output is the data format of higher precision float32.
1707
+ >>> print(output.dtype)
1708
+ Float32
1747
1709
  """
1748
- return softplus_impl(input, beta, threshold)
1710
+ return sub_impl(input, other, alpha)
1749
1711
 
1750
1712
 
1751
- def mean(input, dim=None, keepdim=False, dtype=None):
1713
+ def argmax(input, dim=None, keepdim=False):
1752
1714
  r"""
1753
- Reduces all dimension of a tensor by averaging all elements in the dimension, by default.
1754
- And reduce a dimension of `input` along the specified `dim`. `keepdim`
1755
- determines whether the dimensions of the output and input are the same.
1715
+ argmax(input) -> Tensor
1756
1716
 
1757
- Note:
1758
- The `dim` with tensor type is only used for compatibility with older versions and is not recommended.
1717
+ Return the indices of the maximum values of a tensor.
1759
1718
 
1760
1719
  Args:
1761
- input (Tensor[Number]): The input tensor. The dtype of the tensor to be reduced is number.
1762
- :math:`(N, *)` where :math:`*` means, any number of additional dimensions.
1763
- dim (Union[int, tuple(int), list(int), Tensor]): The dimensions to reduce. Default: ``None`` ,
1764
- reduce all dimensions. Only constant value is allowed. Assume the rank of `input` is r,
1765
- and the value range is [-r,r).
1766
- keepdim (bool): If ``True`` , keep these reduced dimensions and the length is 1.
1767
- If ``False`` , don't keep these dimensions. Default: ``False`` .
1768
- dtype (:class:`mindspore.dtype`): The desired data type of returned Tensor. Default: ``None`` .
1720
+ input (Tensor): Input tensor.
1769
1721
 
1770
1722
  Returns:
1771
- Tensor, has the same data type as input tensor.
1723
+ Tensor.
1772
1724
 
1773
- - If `dim` is ``None`` , and `keepdim` is ``False`` ,
1774
- the output is a 0-D tensor representing the product of all elements in the input tensor.
1775
- - If `dim` is int, set as 1, and `keepdim` is ``False`` ,
1776
- the shape of output is :math:`(x_0, x_2, ..., x_R)`.
1777
- - If `dim` is tuple(int), set as (1, 2), and `keepdim` is ``False`` ,
1778
- the shape of output is :math:`(x_0, x_3, ..., x_R)`.
1779
- - If `dim` is 1-D Tensor, set as [1, 2], and `keepdim` is ``False`` ,
1780
- the shape of output is :math:`(x_0, x_3, ..., x_R)`.
1725
+ Supported Platforms:
1726
+ ``Ascend``
1727
+
1728
+ Examples:
1729
+ >>> import numpy as np
1730
+ >>> from mindspore import Tensor
1731
+ >>> from mindspore import ops
1732
+ >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32))
1733
+ >>> output = ops.auto_generate.argmax_ext(x)
1734
+ >>> print(output)
1735
+ 6
1736
+
1737
+ .. function:: argmax(input, dim, keepdim=False) -> Tensor
1738
+ :noindex:
1739
+
1740
+ Return the indices of the maximum values of a tensor across a dimension.
1741
+
1742
+ Args:
1743
+ input (Tensor): Input tensor.
1744
+ dim (int): The dimension to reduce.
1745
+ keepdim (bool, optional): Whether the output tensor retains the specified
1746
+ dimension. Default: ``False`` .
1747
+
1748
+ Returns:
1749
+ Tensor, indices of the maximum values across a dimension.
1781
1750
 
1782
1751
  Raises:
1783
- TypeError: If `x` is not a Tensor.
1784
- TypeError: If `dim` is not one of the following: int, tuple, list or Tensor.
1785
- TypeError: If `keepdim` is not a bool.
1752
+ TypeError: If `keepdim` is not bool.
1786
1753
  ValueError: If `dim` is out of range.
1787
1754
 
1788
1755
  Supported Platforms:
1789
- ``Ascend`` ``GPU`` ``CPU``
1756
+ ``Ascend``
1790
1757
 
1791
1758
  Examples:
1792
- >>> import mindspore
1793
1759
  >>> import numpy as np
1794
- >>> from mindspore import Tensor, ops
1795
- >>> x = Tensor(np.random.randn(3, 4, 5, 6).astype(np.float32))
1796
- >>> output = ops.mean_ext(x, 1, keepdim=True)
1797
- >>> result = output.shape
1798
- >>> print(result)
1799
- (3, 1, 5, 6)
1800
- >>> # case 1: Reduces a dimension by averaging all elements in the dimension.
1801
- >>> x = Tensor(np.array([[[2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2], [2, 2, 2, 2, 2, 2]],
1802
- ... [[4, 4, 4, 4, 4, 4], [5, 5, 5, 5, 5, 5], [6, 6, 6, 6, 6, 6]],
1803
- ... [[6, 6, 6, 6, 6, 6], [8, 8, 8, 8, 8, 8], [10, 10, 10, 10, 10, 10]]]),
1804
- ... mindspore.float32)
1805
- >>> output = ops.mean_ext(x)
1806
- >>> print(output)
1807
- 5.0
1808
- >>> print(output.shape)
1809
- ()
1810
- >>> # case 2: Reduces a dimension along the dim 0
1811
- >>> output = ops.mean_ext(x, 0, True)
1812
- >>> print(output)
1813
- [[[4. 4. 4. 4. 4. 4.]
1814
- [5. 5. 5. 5. 5. 5.]
1815
- [6. 6. 6. 6. 6. 6.]]]
1816
- >>> # case 3: Reduces a dimension along the dim 1
1817
- >>> output = ops.mean_ext(x, 1, True)
1818
- >>> print(output)
1819
- [[[2. 2. 2. 2. 2. 2.]]
1820
- [[5. 5. 5. 5. 5. 5.]]
1821
- [[8. 8. 8. 8. 8. 8.]]]
1822
- >>> # case 4: Reduces a dimension along the dim 2
1823
- >>> output = ops.mean_ext(x, 2, True)
1760
+ >>> from mindspore import Tensor
1761
+ >>> from mindspore import ops
1762
+ >>> x = Tensor(np.array([[1, 20, 5], [67, 8, 9], [130, 24, 15]]).astype(np.float32))
1763
+ >>> output = ops.auto_generate.argmax_ext(x, dim=-1)
1824
1764
  >>> print(output)
1825
- [[[ 2.]
1826
- [ 2.]
1827
- [ 2.]]
1828
- [[ 4.]
1829
- [ 5.]
1830
- [ 6.]]
1831
- [[ 6.]
1832
- [ 8.]
1833
- [10.]]]
1765
+ [1 0 0]
1834
1766
  """
1835
- return mean_impl(input, dim, keepdim, dtype)
1767
+ return argmax_impl(input, dim, keepdim)
1836
1768
 
1837
1769
 
1838
- def select(input, dim, index):
1770
+ def matrix_inverse(input):
1839
1771
  r"""
1840
- Slices the input tensor along the selected dimension at the given index.
1841
-
1842
- .. warning::
1843
- This is an experimental API that is subject to change or deletion.
1772
+ Compute the inverse of the input matrix.
1844
1773
 
1845
1774
  Args:
1846
- input (Tensor): the input tensor.
1847
- dim (int): the dimension to slice.
1848
- index (int): the index to select with.
1775
+ input (Tensor): A matrix to be calculated. Input `input` must be at least two dimensions, and the size of
1776
+ the last two dimensions must be the same size.
1849
1777
 
1850
1778
  Returns:
1851
- Tensor.
1779
+ Tensor, has the same type and shape as input`.
1852
1780
 
1853
1781
  Raises:
1854
- TypeError: If input is not a Tensor.
1782
+ TypeError: If `input` is not a Tensor.
1783
+ ValueError: If the size of the last two dimensions of `input` is not the same.
1784
+ ValueError: If the dimension of `input` is 1.
1855
1785
 
1856
1786
  Supported Platforms:
1857
1787
  ``Ascend``
1858
1788
 
1859
1789
  Examples:
1860
- >>> import mindspore
1861
- >>> from mindspore import Tensor, mint
1862
- >>> input = Tensor([[2, 3, 4, 5],[3, 2, 4, 5]])
1863
- >>> y = mint.select(input, 0, 0)
1864
- >>> print(y)
1865
- [2 3 4 5]
1790
+ >>> from mindspore import Tensor, ops
1791
+ >>> from mindspore import dtype as mstype
1792
+ >>> x = Tensor([[1., 2.], [3., 4.]], mstype.float32)
1793
+ >>> print(ops.matrix_inverse_ext(x))
1794
+ [[-2. 1. ]
1795
+ [ 1.5 -0.5]]
1866
1796
  """
1867
- return select_impl(input, dim, index)
1797
+ return matrix_inverse_impl(input)
1868
1798
 
1869
1799
 
1870
- def elu(input, alpha=1.0):
1800
+ def matmul(input, other):
1871
1801
  r"""
1872
- Exponential Linear Unit activation function.
1873
-
1874
- Applies the exponential linear unit function element-wise.
1875
- The activation function is defined as:
1876
-
1877
- .. math::
1878
-
1879
- \text{ELU}(x)= \left\{
1880
- \begin{array}{align}
1881
- \alpha(e^{x} - 1) & \text{if } x \le 0\\
1882
- x & \text{if } x \gt 0\\
1883
- \end{array}\right.
1884
-
1885
- Where :math:`x` is the element of input Tensor `input`, :math:`\alpha` is param `alpha`,
1886
- it determines the smoothness of ELU.
1887
-
1888
- ELU function graph:
1802
+ None
1803
+ """
1804
+ return matmul_impl(input, other)
1805
+
1806
+
1807
+ def mse_loss(input, target, reduction='mean'):
1808
+ r"""
1809
+ Calculates the mean squared error between the predicted value and the label value.
1889
1810
 
1890
- .. image:: ../images/ELU.png
1891
- :align: center
1811
+ For detailed information, please refer to :class:`mindspore.nn.MSELoss`.
1892
1812
 
1893
1813
  Args:
1894
- input (Tensor): The input of ELU is a Tensor of any dimension.
1895
- alpha (float, optional): The alpha value of ELU, the data type is float.
1896
- Default: ``1.0`` .
1814
+ input (Tensor): Tensor of any dimension. The data type needs to be consistent with the `target`.
1815
+ It should also be broadcastable with the `target`.
1816
+ target (Tensor): The input label. Tensor of any dimension. The data type needs to be consistent with the `input`.
1817
+ It should also be broadcastable with the `input`.
1818
+ reduction (str, optional): Apply specific reduction method to the output: ``'mean'`` , ``'none'`` ,
1819
+ ``'sum'`` . Default: ``'mean'`` .
1820
+
1821
+ - ``'none'``: no reduction will be applied.
1822
+ - ``'mean'``: compute and return the mean of elements in the output.
1823
+ - ``'sum'``: the output elements will be summed.
1897
1824
 
1898
1825
  Returns:
1899
- Tensor, has the same shape and data type as `input`.
1826
+ - Tensor. If `reduction` is ``'mean'`` or ``'sum'``, the shape of output is `Tensor Scalar`.
1827
+ - If reduction is ``'none'``, the shape of output is the broadcasted shape of **input** and **target** .
1900
1828
 
1901
1829
  Raises:
1902
- TypeError: If `alpha` is not a float.
1830
+ ValueError: If `reduction` is not one of ``'mean'`` , ``'sum'`` or ``'none'``.
1831
+ ValueError: If `input` and `target` are not broadcastable.
1832
+ TypeError: If `input` and `target` are in different data type.
1903
1833
 
1904
1834
  Supported Platforms:
1905
1835
  ``Ascend``
@@ -1908,96 +1838,46 @@ def elu(input, alpha=1.0):
1908
1838
  >>> import mindspore
1909
1839
  >>> import numpy as np
1910
1840
  >>> from mindspore import Tensor, ops
1911
- >>> x = Tensor(np.array([[-1.0, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
1912
- >>> output = ops.auto_generate.elu_ext(x)
1841
+ >>> logits = Tensor(np.array([1, 2, 3]), mindspore.float32)
1842
+ >>> labels = Tensor(np.array([[1, 1, 1], [1, 2, 2]]), mindspore.float32)
1843
+ >>> output = ops.mse_loss_ext(logits, labels, reduction='none')
1913
1844
  >>> print(output)
1914
- [[-0.63212055 4. -0.99966455]
1915
- [ 2. -0.99326205 9. ]]
1845
+ [[0. 1. 4.]
1846
+ [0. 0. 1.]]
1916
1847
  """
1917
- return elu_impl(input, alpha)
1848
+ return mse_loss_impl(input, target, converted_reduction)
1918
1849
 
1919
1850
 
1920
- def index_add(input, dim, index, source, alpha=1):
1851
+ def sort(input, dim=-1, descending=False, stable=False):
1921
1852
  r"""
1922
- Accumulate the elements of `alpha` times `source` into the `input` by adding to the index in the order given in `index`. For example, if ``dim == 0`` , ``index[i] == j`` , and ``alpha = -1`` , then the `i` th row of `source` is subtracted from the `j` th row of `input` . The `dim` th dimension of `source` must have the same size as the length of `index` , and all other dimensions must match `input`, or an error will be raised. For a 3-D tensor, the output is defined as follows:
1923
-
1924
- .. math::
1925
- \begin{array}{ll}
1926
- input[index[i],\ :,\ :]\ +=\ alpha * source[i,\ :,\ :] \qquad \#if\ dim == 0 \\
1927
- input[:,\ \ index[i],\ :]\ +=\ alpha * source[:,\ \ i,\ :] \qquad \#if\ dim == 1 \\
1928
- input[:,\ :,\ \ index[i]]\ +=\ alpha * source[:,\ :,\ \ i] \qquad\#if\ dim == 2 \\
1929
- \end{array}
1930
-
1931
- .. warning::
1932
- This is an experimental API that is subject to change or deletion.
1933
-
1934
- Args:
1935
- input (Tensor): The input Tensor.
1936
- dim (int): The dimension along which to index.
1937
- index (Tensor): Add the value of "input Tensor" and `source` along the dimension of the `dim` according to the specified index value, with data type int32. The `index` must be 1D with the same size as the size of `source` in the `dim` dimension. The values of `index` should be in [0, b), where the b is the size of "input Tensor" in the `dim` dimension.
1938
- source (Tensor): The input tensor with the value to add. Must have same data type as "input Tensor". The shape must be the same as "input Tensor" except the `dim` th dimension.
1939
- alpha (number, optional): The scalar multiplier for source. Default: ``1``.
1940
-
1941
- Returns:
1942
- Tensor, has the same shape and dtype as `input`.
1943
-
1944
- Raises:
1945
- TypeError: If neither `index` nor `source` is a Tensor.
1946
- ValueError: If the value of `dim` is out of the dimension range of `source` shape.
1947
- ValueError: If `index` rank is not the same as `source` rank.
1948
- ValueError: If shape of `index` is not 1D or size of `index` is not equal to dimension of source[dim].
1949
- ValueError: If the shape of `source` is not the same as that of `input` except the `dim` axis.
1950
-
1951
- Supported Platforms:
1952
- ``Ascend``
1953
-
1954
- Examples:
1955
- >>> import numpy as np
1956
- >>> import mindspore
1957
- >>> from mindspore import Tensor, ops
1958
- >>> x = Tensor(np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]), mindspore.float32)
1959
- >>> index = Tensor(np.array([0, 2]), mindspore.int32)
1960
- >>> y = Tensor(np.array([[0.5, 1.0], [1.0, 1.5], [2.0, 2.5]]), mindspore.float32)
1961
- >>> output = ops.auto_generate.index_add_ext(x, 1, index, y, alpha=1)
1962
- >>> print(output)
1963
- [[ 1.5 2. 4. ]
1964
- [ 5. 5. 7.5]
1965
- [ 9. 8. 11.5]]
1853
+ None
1966
1854
  """
1967
- return index_add_impl(input, dim, index, source, alpha)
1855
+ return sort_impl(input, dim, descending, stable)
1968
1856
 
1969
1857
 
1970
- def leaky_relu(input, negative_slope=0.01):
1858
+ def log10(input):
1971
1859
  r"""
1972
- leaky_relu activation function. The element of `input` less than 0 times `negative_slope` .
1973
-
1974
- The activation function is defined as:
1860
+ Returns the logarithm to the base 10 of a tensor element-wise.
1975
1861
 
1976
1862
  .. math::
1977
- \text{leaky_relu}(input) = \begin{cases}input, &\text{if } input \geq 0; \cr
1978
- \text{negative_slope} * input, &\text{otherwise.}\end{cases}
1979
-
1980
- where :math:`negative\_slope` represents the `negative_slope` parameter.
1981
-
1982
- For more details, see `Rectifier Nonlinearities Improve Neural Network Acoustic Models
1983
- <https://ai.stanford.edu/~amaas/papers/relu_hybrid_icml2013_final.pdf>`_.
1984
-
1985
- LeakyReLU Activation Function Graph:
1863
+ y_i = \log_{10}(x_i)
1986
1864
 
1987
- .. image:: ../images/LeakyReLU.png
1988
- :align: center
1865
+ .. warning::
1866
+ - This is an experimental API that is subject to change or deletion.
1867
+ - If the input value of operator Log10 is within the range (0, 0.01] or [0.95, 1.05], the output accuracy
1868
+ may be affacted.
1989
1869
 
1990
1870
  Args:
1991
- input (Tensor): The input of leaky_relu is a Tensor of any dimension.
1992
- negative_slope (Union[int, float], optional): Slope of the activation function when the element of `input` is less than 0.
1993
- Default: ``0.01`` .
1871
+ input (Tensor): Input Tensor of any dimension. The value must be greater than 0.
1994
1872
 
1995
1873
  Returns:
1996
- Tensor, has the same type and shape as the `input`.
1874
+ Tensor, has the same shape as the `input`, and the dtype changes according to the `input.dtype`.
1875
+
1876
+ - if `input.dtype` is in [float16, float32, float64, bfloat16], the output dtype is the same as the `input.dtype`.
1877
+ - if `input.dtype` is integer or boolean type, the output dtype is float32.
1997
1878
 
1998
1879
  Raises:
1999
1880
  TypeError: If `input` is not a Tensor.
2000
- TypeError: If `negative_slope` is not a float or an int.
2001
1881
 
2002
1882
  Supported Platforms:
2003
1883
  ``Ascend``
@@ -2006,187 +1886,211 @@ def leaky_relu(input, negative_slope=0.01):
2006
1886
  >>> import mindspore
2007
1887
  >>> import numpy as np
2008
1888
  >>> from mindspore import Tensor, ops
2009
- >>> input = Tensor(np.array([[-1.0, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
2010
- >>> print(ops.extend.leaky_relu_ext(input, negative_slope=0.2))
2011
- [[-0.2 4. -1.6]
2012
- [ 2. -1. 9. ]]
1889
+ >>> x = Tensor(np.array([3.0, 5.0, 7.0]), mindspore.float32)
1890
+ >>> output = ops.auto_generate.log10_ext(x)
1891
+ >>> print(output)
1892
+ [0.47712136 0.69897 0.845098 ]
2013
1893
  """
2014
- return leaky_relu_impl(input, negative_slope)
1894
+ return log10_impl(input)
1895
+
1896
+
1897
+ def tril(input, diagonal=0):
1898
+ r"""
1899
+ None
1900
+ """
1901
+ return tril_impl(input, diagonal)
2015
1902
 
2016
1903
 
2017
- def transpose(input, dim0, dim1):
1904
+ def topk(input, k, dim=-1, largest=True, sorted=True):
2018
1905
  r"""
2019
- Interchange two axes of a tensor.
1906
+ Finds values and indices of the `k` largest or smallest entries along a given dimension.
2020
1907
 
2021
1908
  .. warning::
2022
- This is an experimental API that is subject to change or deletion.
2023
-
2024
- Args:
2025
- input(Tensor): Input tensor.
2026
- dim0 (int): First axis.
2027
- dim1 (int): Second axis.
1909
+ - If sorted is set to False, due to different memory layout and traversal methods on different platforms,
1910
+ the display order of calculation results may be inconsistent when `sorted` is False.
2028
1911
 
2029
- Returns:
2030
- Transposed tensor, has the same data type as `input`.
1912
+ If the `input` is a one-dimensional Tensor, finds the `k` largest or smallest entries in the Tensor,
1913
+ and outputs its value and index as a Tensor. values[`k`] is the `k` largest item in `input`,
1914
+ and its index is indices [`k`].
2031
1915
 
2032
- Raises:
2033
- TypeError: If argument `input` is not Tensor.
2034
- TypeError: If `dim0` or `dim1` is not integer.
2035
- ValueError: If `dim0` or `dim1` is not in the range of :math:`[-ndim, ndim-1]`.
1916
+ For a multi-dimensional matrix,
1917
+ calculates the first or last `k` entries in a given dimension, therefore:
2036
1918
 
2037
- Supported Platforms:
2038
- ``Ascend``
1919
+ .. math::
2039
1920
 
2040
- Examples:
2041
- >>> import numpy as np
2042
- >>> from mindspore import mint
2043
- >>> from mindspore import Tensor
2044
- >>> input = Tensor(np.ones((2,3,4), dtype=np.float32))
2045
- >>> output = mint.transpose(input, 0, 2)
2046
- >>> print(output.shape)
2047
- (4, 3, 2)
2048
- """
2049
- return transpose_impl(input, dim0, dim1)
2050
-
2051
-
2052
- def index_select(input, dim, index):
2053
- r"""
2054
- Generates a new Tensor that accesses the values of `input` along the specified `dim` dimension
2055
- using the indices specified in `index`. The new Tensor has the same number of dimensions as `input`,
2056
- with the size of the `dim` dimension being equal to the length of `index`, and the size of all other
2057
- dimensions will be unchanged from the original `input` Tensor.
1921
+ values.shape = indices.shape
2058
1922
 
2059
- .. note::
2060
- The value of index must be in the range of `[0, input.shape[dim])`, the result is undefined out of range.
1923
+ If the two compared elements are the same, the one with the smaller index value is returned first.
2061
1924
 
2062
1925
  Args:
2063
- input (Tensor): The input Tensor.
2064
- dim (int): The dimension to be indexed.
2065
- index (Tensor): A 1-D Tensor with the indices.
1926
+ input (Tensor): Input to be computed.
1927
+ k (int): The number of top or bottom elements to be computed along the last dimension.
1928
+ dim (int, optional): The dimension to sort along. Default: ``-1`` .
1929
+ largest (bool, optional): If largest is ``False`` then the k smallest elements are returned.
1930
+ Default: ``True`` .
1931
+ sorted (bool, optional): If ``True`` , the obtained elements will be sorted by the values in descending
1932
+ order or ascending order according to `largest`. If ``False`` , the obtained elements will not be
1933
+ sorted. Default: ``True`` .
2066
1934
 
2067
1935
  Returns:
2068
- Tensor, has the same dtype as input Tensor.
1936
+ A tuple consisting of `values` and `indices`.
1937
+
1938
+ - values (Tensor) - The `k` largest or smallest elements in each slice of the given dimension.
1939
+ - indices (Tensor) - The indices of values within the last dimension of input.
2069
1940
 
2070
1941
  Raises:
2071
- TypeError: If `input` or `index` is not a Tensor.
2072
- TypeError: If `dim` is not int number.
2073
- ValueError: If the value of `dim` is out the range of `[-input.ndim, input.ndim - 1]`.
2074
- ValueError: If the dimension of `index` is not equal to 1.
1942
+ TypeError: If `sorted` is not a bool.
1943
+ TypeError: If `input` is not a Tensor.
1944
+ TypeError: If `k` is not an int.
2075
1945
 
2076
1946
  Supported Platforms:
2077
1947
  ``Ascend``
2078
1948
 
2079
1949
  Examples:
2080
- >>> import mindspore
2081
- >>> from mindspore import Tensor, ops
2082
- >>> import numpy as np
2083
- >>> input = Tensor(np.arange(16).astype(np.float32).reshape(2, 2, 4))
2084
- >>> print(input)
2085
- [[[ 0. 1. 2. 3.]
2086
- [ 4. 5. 6. 7.]]
2087
- [[ 8. 9. 10. 11.]
2088
- [12. 13. 14. 15.]]]
2089
- >>> index = Tensor([0,], mindspore.int32)
2090
- >>> y = ops.auto_generate.index_select_ext(input, 1, index)
2091
- >>> print(y)
2092
- [[[ 0. 1. 2. 3.]]
2093
- [[ 8. 9. 10. 11.]]]
1950
+ >>> import mindspore as ms
1951
+ >>> from mindspore import ops
1952
+ >>> x = ms.Tensor([[0.5368, 0.2447, 0.4302, 0.9673],
1953
+ ... [0.4388, 0.6525, 0.4685, 0.1868],
1954
+ ... [0.3563, 0.5152, 0.9675, 0.8230]], dtype=ms.float32)
1955
+ >>> output = ops.topk_ext(x, 2, dim=1)
1956
+ >>> print(output)
1957
+ (Tensor(shape=[3, 2], dtype=Float32, value=
1958
+ [[ 9.67299998e-01, 5.36800027e-01],
1959
+ [ 6.52499974e-01, 4.68499988e-01],
1960
+ [ 9.67499971e-01, 8.23000014e-01]]), Tensor(shape=[3, 2], dtype=Int64, value=
1961
+ [[3, 0],
1962
+ [1, 2],
1963
+ [2, 3]]))
1964
+ >>> output2 = ops.topk_ext(x, 2, dim=1, largest=False)
1965
+ >>> print(output2)
1966
+ (Tensor(shape=[3, 2], dtype=Float32, value=
1967
+ [[ 2.44700000e-01, 4.30200011e-01],
1968
+ [ 1.86800003e-01, 4.38800007e-01],
1969
+ [ 3.56299996e-01, 5.15200019e-01]]), Tensor(shape=[3, 2], dtype=Int64, value=
1970
+ [[1, 2],
1971
+ [3, 0],
1972
+ [0, 1]]))
2094
1973
  """
2095
- return index_select_impl(input, dim, index)
1974
+ return topk_impl(input, k, dim, largest, sorted)
2096
1975
 
2097
1976
 
2098
- def stack(tensors, dim=0):
1977
+ def add(input, other, alpha=1):
2099
1978
  r"""
2100
- Stacks a list of tensors in specified dim.
1979
+ Adds scaled other value to input Tensor.
2101
1980
 
2102
- Stacks the list of input tensors with the same rank `R`, output is a tensor of rank `(R+1)`.
1981
+ .. math::
2103
1982
 
2104
- Given input tensors of shape :math:`(x_1, x_2, ..., x_R)`. Set the number of input tensors as `N`.
2105
- If :math:`dim \ge 0`, the shape of the output tensor is
2106
- :math:`(x_1, x_2, ..., x_{dim}, N, x_{dim+1}, ..., x_R)`.
1983
+ out_{i} = input_{i} + alpha \times other_{i}
1984
+
1985
+ Note:
1986
+ - When the two inputs have different shapes,
1987
+ they must be able to broadcast to a common shape.
1988
+ - The two inputs and alpha comply with the implicit type conversion rules to make the data types
1989
+ consistent.
2107
1990
 
2108
1991
  Args:
2109
- tensors (Union[tuple, list]): A Tuple or list of Tensor objects with the same shape and type.
2110
- dim (int, optional): Dimension to stack. The range is [-(R+1), R+1). Default: ``0`` .
1992
+ input (Union[Tensor, number.Number, bool]): The first input is a number.Number or
1993
+ a bool or a tensor whose data type is
1994
+ `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
1995
+ `bool <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
1996
+ other (Union[Tensor, number.Number, bool]): The second input, is a number.Number or
1997
+ a bool or a tensor whose data type is
1998
+ `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
1999
+ `bool <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
2000
+ alpha (number.Number): A scaling factor applied to `other`, default 1.
2111
2001
 
2112
2002
  Returns:
2113
- Tensor. A stacked Tensor with the same type as `tensors`.
2003
+ Tensor with a shape that is the same as the broadcasted shape of the input `input` and `other`,
2004
+ and the data type is the one with higher precision or higher digits among the two inputs and alpha.
2114
2005
 
2115
2006
  Raises:
2116
- TypeError: If the data types of elements in `tensors` are not the same.
2117
- ValueError: If `dim` is out of the range [-(R+1), R+1);
2118
- or if the shapes of elements in `tensors` are not the same.
2007
+ TypeError: If the type of `input`, `other`, or `alpha` is not one of the following: Tensor, number.Number, bool.
2008
+ TypeError: If `alpha` is of type float but `input` and `other` are not of type float.
2009
+ TypeError: If `alpha` is of type bool but `input` and `other` are not of type bool.
2119
2010
 
2120
2011
  Supported Platforms:
2121
- ``Ascend``
2012
+ ``Ascend`` ``GPU`` ``CPU``
2122
2013
 
2123
2014
  Examples:
2124
- >>> import mindspore
2125
- >>> from mindspore import Tensor, ops
2126
2015
  >>> import numpy as np
2127
- >>> data1 = Tensor(np.array([0, 1]).astype(np.float32))
2128
- >>> data2 = Tensor(np.array([2, 3]).astype(np.float32))
2129
- >>> output = ops.auto_generate.stack_ext([data1, data2], 0)
2016
+ >>> import mindspore
2017
+ >>> from mindspore import Tensor
2018
+ >>> from mindspore import ops
2019
+ >>> x = Tensor(1, mindspore.int32)
2020
+ >>> y = Tensor(np.array([4, 5, 6]).astype(np.float32))
2021
+ >>> alpha = 0.5
2022
+ >>> output = ops.auto_generate.add_ext(x, y, alpha)
2130
2023
  >>> print(output)
2131
- [[0. 1.]
2132
- [2. 3.]]
2024
+ [3. 3.5 4.]
2025
+ >>> # the data type of x is int32, the data type of y is float32,
2026
+ >>> # alpha is a float, and the output is the data format of higher precision float32.
2027
+ >>> print(output.dtype)
2028
+ Float32
2133
2029
  """
2134
- return stack_impl(tensors, dim)
2030
+ return add_impl(input, other, alpha)
2135
2031
 
2136
2032
 
2137
- def isneginf(input):
2033
+ def bmm(input, mat2):
2138
2034
  r"""
2139
- Determines which elements are -inf for each position.
2035
+ Performs batch matrix-matrix multiplication of two three-dimensional tensors.
2140
2036
 
2141
- .. warning::
2142
- - This API can be used only on the Atlas A2 training series.
2037
+ .. math::
2038
+ \text{output}= \text{input} @ \text{mat2}
2143
2039
 
2144
2040
  Args:
2145
- input (Tensor): Input Tensor.
2041
+ input (Tensor): The first batch of matrices to be multiplied. Must be a three-dimensional tensor of shape `(b, n, m)`.
2042
+ mat2 (Tensor): The second batch of matrices to be multiplied. Must be a three-dimensional tensor of shape `(b, m, p)`.
2146
2043
 
2147
2044
  Returns:
2148
- Tensor with the same shape as the input, where elements are `True` if the corresponding element in the `input` is negative infinity, and `False` otherwise.
2045
+ Tensor, the output tensor of shape `(b, n, p)`, where each matrix is the product of the corresponding matrices in the input batches.
2149
2046
 
2150
2047
  Raises:
2151
- TypeError: If the input is not a tensor.
2048
+ ValueError: If `input` or `mat2` is not three-dimensional tensors.
2049
+ ValueError: If the length of the third dimension of `input` is not equal to the length of the second dimension of `mat2`.
2050
+ ValueError: If the batch size of the inputs is not equal to the batch size of the mat2.
2152
2051
 
2153
2052
  Supported Platforms:
2154
2053
  ``Ascend`` ``GPU`` ``CPU``
2155
2054
 
2156
2055
  Examples:
2157
- >>> from mindspore import ops, Tensor
2158
- >>> from mindspore import dtype as mstype
2159
- >>> output = ops.isneginf(Tensor([[-float("inf"), float("inf")], [1, -float("inf")]], mstype.float32))
2056
+ >>> import mindspore
2057
+ >>> import numpy as np
2058
+ >>> from mindspore import Tensor
2059
+ >>> from mindspore import ops
2060
+ >>> a = Tensor(np.ones(shape=[2, 3, 4]), mindspore.float32)
2061
+ >>> b = Tensor(np.ones(shape=[2, 4, 5]), mindspore.float32)
2062
+ >>> output = ops.auto_generate.bmm_ext(a, b)
2160
2063
  >>> print(output)
2161
- [[ True False]
2162
- [False True]]
2064
+ [[[4. 4. 4. 4. 4.]
2065
+ [4. 4. 4. 4. 4.]
2066
+ [4. 4. 4. 4. 4.]]
2067
+ [[4. 4. 4. 4. 4.]
2068
+ [4. 4. 4. 4. 4.]
2069
+ [4. 4. 4. 4. 4.]]]
2163
2070
  """
2164
- return isneginf_impl(input)
2071
+ return bmm_impl(input, mat2)
2165
2072
 
2166
2073
 
2167
- def argsort(input, dim=-1, descending=False, stable=False):
2074
+ def log2(input):
2168
2075
  r"""
2169
- Sorts the input tensor along the given dimension in specified order and return the sorted indices.
2076
+ Returns the logarithm to the base 2 of a tensor element-wise.
2077
+
2078
+ .. math::
2079
+ y_i = \log_2(x_i)
2170
2080
 
2171
2081
  .. warning::
2172
- This is an experimental optimizer API that is subject to change.
2082
+ - If the input value of operator Log2 is within the range (0, 0.01] or [0.95, 1.05], the output accuracy
2083
+ may be affacted.
2173
2084
 
2174
2085
  Args:
2175
- input(Tensor): The input tensor to sort.
2176
- dim (int, optional): The dim to sort along. Default: ``-1`` , means the last dimension.
2177
- The Ascend backend only supports sorting the last dimension.
2178
- descending (bool, optional): The sort order. If `descending` is ``True`` then the elements
2179
- are sorted in descending order by value. Otherwise sort in ascending order. Default: ``False`` .
2180
- stable (bool, optional): Whether to use stable sorting algorithm. Default: ``False``.
2086
+ input (Tensor): Input Tensor of any dimension. The value must be greater than 0.
2181
2087
 
2182
2088
  Returns:
2183
- Tensor, the indices of sorted input tensor. Data type is int64.
2089
+ Tensor, has the same shape as the `input`. If `input.dtype` is of integer or boolean type, the output dtype
2090
+ will be float32. Otherwise, the output dtype will be the same as `input.dtype`.
2184
2091
 
2185
2092
  Raises:
2186
- ValueError: If `dim` is out of range.
2187
- TypeError: If dtype of `dim` is not int32.
2188
- TypeError: If dtype of `descending` is not bool.
2189
- TypeError: If dtype of `stable` is not bool.
2093
+ TypeError: If `input` is not a Tensor.
2190
2094
 
2191
2095
  Supported Platforms:
2192
2096
  ``Ascend``
@@ -2194,181 +2098,159 @@ def argsort(input, dim=-1, descending=False, stable=False):
2194
2098
  Examples:
2195
2099
  >>> import mindspore
2196
2100
  >>> import numpy as np
2197
- >>> from mindspore import Tensor
2198
- >>> import mindspore.mint as mint
2199
- >>> x = Tensor(np.array([[8, 2, 1], [5, 9, 3], [4, 6, 7]]), mindspore.float16)
2200
- >>> sort = mint.argsort(x)
2201
- >>> print(sort)
2202
- [[2 1 0]
2203
- [2 0 1]
2204
- [0 1 2]]
2101
+ >>> from mindspore import Tensor, ops
2102
+ >>> x = Tensor(np.array([3.0, 5.0, 7.0]), mindspore.float32)
2103
+ >>> output = ops.auto_generate.log2_ext(x)
2104
+ >>> print(output)
2105
+ [1.5849625 2.321928 2.807355 ]
2205
2106
  """
2206
- return argsort_impl(input, dim, descending, stable)
2107
+ return log2_impl(input)
2207
2108
 
2208
2109
 
2209
- def sum(input, dim=None, keepdim=False, dtype=None):
2110
+ def inplace_add(input, other, alpha=1):
2210
2111
  r"""
2211
- Calculate sum of Tensor elements over a given dim.
2112
+ None
2113
+ """
2114
+ return inplace_add_impl(input, other, alpha)
2115
+
2116
+
2117
+ def elu(input, alpha=1.0):
2118
+ r"""
2119
+ Exponential Linear Unit activation function.
2212
2120
 
2213
- Note:
2214
- The `dim` with tensor type is only used for compatibility with older versions and is not recommended.
2121
+ Applies the exponential linear unit function element-wise.
2122
+ The activation function is defined as:
2123
+
2124
+ .. math::
2125
+
2126
+ \text{ELU}(x)= \left\{
2127
+ \begin{array}{align}
2128
+ \alpha(e^{x} - 1) & \text{if } x \le 0\\
2129
+ x & \text{if } x \gt 0\\
2130
+ \end{array}\right.
2131
+
2132
+ Where :math:`x` is the element of input Tensor `input`, :math:`\alpha` is param `alpha`,
2133
+ it determines the smoothness of ELU.
2134
+
2135
+ ELU function graph:
2136
+
2137
+ .. image:: ../images/ELU.png
2138
+ :align: center
2215
2139
 
2216
2140
  Args:
2217
- input (Tensor): The input tensor.
2218
- dim (Union[None, int, tuple(int), list(int), Tensor]): Dimensions along which a sum is performed.
2219
- If ``None`` , sum all the elements of the input tensor.
2220
- If the `dim` is a tuple or list of ints, a sum is performed on all the dimensions specified in the tuple.
2221
- Must be in the range :math:`[-input.ndim, input.ndim)` . Default: ``None`` .
2222
- keepdim (bool): Whether the output tensor has `dim` retained or not.
2223
- If ``True`` , keep these reduced dimensions and the length is 1.
2224
- If ``False`` , don't keep these dimensions. Default: ``False`` .
2225
- dtype (:class:`mindspore.dtype`): The desired data type of returned Tensor. Default: ``None`` .
2141
+ input (Tensor): The input of ELU is a Tensor of any dimension.
2142
+ alpha (float, optional): The alpha value of ELU, the data type is float.
2143
+ Default: ``1.0`` .
2226
2144
 
2227
2145
  Returns:
2228
- A Tensor, sum of elements over a given `dim` in `input`.
2146
+ Tensor, has the same shape and data type as `input`.
2229
2147
 
2230
2148
  Raises:
2231
- TypeError: If `input` is not a Tensor.
2232
- TypeError: If `dim` is not an int, tulpe(int), list(int), Tensor or None.
2233
- ValueError: If `dim` is not in the range :math:`[-input.ndim, input.ndim)` .
2234
- TypeError: If `keepdim` is not a bool.
2149
+ TypeError: If `alpha` is not a float.
2235
2150
 
2236
2151
  Supported Platforms:
2237
- ``Ascend`` ``GPU`` ``CPU``
2152
+ ``Ascend``
2238
2153
 
2239
2154
  Examples:
2240
2155
  >>> import mindspore
2241
2156
  >>> import numpy as np
2242
2157
  >>> from mindspore import Tensor, ops
2243
- >>> from mindspore import dtype as mstype
2244
- >>> x = Tensor(np.array([[[1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2, 2], [3, 3, 3, 3, 3, 3]],
2245
- ... [[4, 4, 4, 4, 4, 4], [5, 5, 5, 5, 5, 5], [6, 6, 6, 6, 6, 6]],
2246
- ... [[7, 7, 7, 7, 7, 7], [8, 8, 8, 8, 8, 8], [9, 9, 9, 9, 9, 9]]]), mstype.float32)
2247
- >>> out = ops.sum_ext(x)
2248
- >>> print(out)
2249
- 270.0
2250
- >>> out = ops.sum_ext(x, dim=2)
2251
- >>> print(out)
2252
- [[ 6. 12. 18.]
2253
- [24. 30. 36.]
2254
- [42. 48. 54.]]
2255
- >>> out = ops.sum_ext(x, dim=2, keepdim=True)
2256
- >>> print(out)
2257
- [[[ 6.]
2258
- [12.]
2259
- [18.]]
2260
- [[24.]
2261
- [30.]
2262
- [36.]]
2263
- [[42.]
2264
- [48.]
2265
- [54.]]]
2158
+ >>> x = Tensor(np.array([[-1.0, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
2159
+ >>> output = ops.auto_generate.elu_ext(x)
2160
+ >>> print(output)
2161
+ [[-0.63212055 4. -0.99966455]
2162
+ [ 2. -0.99326205 9. ]]
2266
2163
  """
2267
- return sum_impl(input, dim, keepdim, dtype)
2164
+ return elu_impl(input, alpha)
2268
2165
 
2269
2166
 
2270
- def sub(input, other, alpha=1):
2167
+ def adaptive_avg_pool2d_grad(grad_output, x):
2271
2168
  r"""
2272
- Subtracts scaled other value from input Tensor.
2169
+ None
2170
+ """
2171
+ return adaptive_avg_pool2d_grad_impl(grad_output, x)
2172
+
2173
+
2174
+ def bincount(input, weights=None, minlength=0):
2175
+ r"""
2176
+ Count the occurrences of each value in the input.
2273
2177
 
2274
- .. math::
2178
+ If `minlength` is not specified, the length of the output Tensor is the maximum value in the input plus one.
2179
+ If `minlength` is specified, the length of the output Tensor is the maximum value between `minlength` or
2180
+ the maximum value in the input plus one.
2275
2181
 
2276
- out_{i} = input_{i} - alpha \times other_{i}
2182
+ Each value in the output Tensor represents the number of occurrences of that index value in the input.
2183
+ If `weights` is specified, the output results are weighted,
2184
+ i.e., :math:`out[n] += weight[i]` instead of :math:`out[n] += 1`.
2277
2185
 
2278
- Note:
2279
- - When the two inputs have different shapes,
2280
- they must be able to broadcast to a common shape.
2281
- - The two inputs and alpha comply with the implicit type conversion rules to make the data types
2282
- consistent.
2186
+ .. warning::
2187
+ This is an experimental API that is subject to change or deletion.
2283
2188
 
2284
2189
  Args:
2285
- input (Union[Tensor, number.Number, bool]): The first input is a number.Number or
2286
- a bool or a tensor whose data type is
2287
- `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
2288
- `bool_ <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
2289
- other (Union[Tensor, number.Number, bool]): The second input, is a number.Number or
2290
- a bool or a tensor whose data type is
2291
- `number <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_ or
2292
- `bool_ <https://www.mindspore.cn/docs/en/master/api_python/mindspore/mindspore.dtype.html>`_.
2293
- alpha (number.Number): A scaling factor applied to `other`, default 1.
2190
+ input (Tensor): A one-dimensional Tensor.
2191
+ weights (Tensor, optional): Weights with the same shape as the input. Default: ``None``.
2192
+ minlength (int, optional): The minimum length of output Tensor. Should be non-negative. Default: ``0``.
2294
2193
 
2295
2194
  Returns:
2296
- Tensor with a shape that is the same as the broadcasted shape of the input `input` and `other`,
2297
- and the data type is the one with higher precision or higher digits among the two inputs and alpha.
2195
+ Tensor, If input is non-empty, the output shape is :math:`(max(max(input)+1, minlength), )`,
2196
+ otherwise the shape is :math:`(0, )`.
2298
2197
 
2299
2198
  Raises:
2300
- TypeError: If the type of `input`, `other`, or `alpha` is not one of the following: Tensor, number.Number, bool.
2301
- TypeError: If `alpha` is of type float but `input` and `other` are not of type float.
2302
- TypeError: If `alpha` is of type bool but `input` and `other` are not of type bool.
2199
+ TypeError: If `input` or `weights` is not a Tensor.
2200
+ ValueError: If `input` contains negative values.
2201
+ ValueError: If `input` is not one-dimensional or `input` and `weights` do not have the same shape.
2303
2202
 
2304
2203
  Supported Platforms:
2305
- ``Ascend`` ``GPU`` ``CPU``
2204
+ ``Ascend``
2306
2205
 
2307
2206
  Examples:
2308
- >>> import numpy as np
2309
- >>> import mindspore
2310
- >>> from mindspore import Tensor
2311
- >>> from mindspore import ops
2312
- >>> x = Tensor(np.array([4, 5, 6]).astype(np.float32))
2313
- >>> y = Tensor(1, mindspore.int32)
2314
- >>> alpha = 0.5
2315
- >>> output = ops.auto_generate.sub_ext(x, y, alpha)
2316
- >>> print(output)
2317
- [3.5 4.5 5.5]
2318
- >>> # the data type of x is float32, the data type of y is int32,
2319
- >>> # alpha is a float, and the output is the data format of higher precision float32.
2320
- >>> print(output.dtype)
2321
- Float32
2207
+ >>> from mindspore import ops, Tensor
2208
+ >>> print(ops.auto_generate.bincount_ext(Tensor(np.arange(5))))
2209
+ [1 1 1 1 1]
2210
+ >>> print(ops.auto_generate.bincount_ext(Tensor(np.array([0, 1, 1, 3, 2, 1, 7]))))
2211
+ [1 3 1 1 0 0 0 1]
2212
+ >>> w = Tensor(np.array([0.3, 0.5, 0.2, 0.7, 1., -0.6])) # weights
2213
+ >>> x = Tensor(np.array([0, 1, 1, 2, 2, 2]))
2214
+ >>> print(ops.auto_generate.bincount_ext(x, weights=w, minlength=5))
2215
+ [0.3 0.7 1.1 0. 0. ]
2322
2216
  """
2323
- return sub_impl(input, other, alpha)
2217
+ return bincount_impl(input, weights, minlength)
2324
2218
 
2325
2219
 
2326
- def selu(input):
2220
+ def trace(input):
2327
2221
  r"""
2328
- Activation function SELU (Scaled exponential Linear Unit).
2329
-
2330
- The activation function is defined as:
2331
-
2332
- .. math::
2333
- E_{i} =
2334
- scale *
2335
- \begin{cases}
2336
- x_{i}, &\text{if } x_{i} \geq 0; \cr
2337
- \text{alpha} * (\exp(x_i) - 1), &\text{otherwise.}
2338
- \end{cases}
2339
-
2340
- where :math:`alpha` and :math:`scale` are pre-defined constants(:math:`alpha=1.67326324`
2341
- and :math:`scale=1.05070098`).
2342
-
2343
- See more details in `Self-Normalizing Neural Networks <https://arxiv.org/abs/1706.02515>`_.
2344
-
2345
- SELU Activation Function Graph:
2346
-
2347
- .. image:: ../images/SeLU.png
2348
- :align: center
2222
+ Returns a new tensor that is the sum of the `input` main trace.
2349
2223
 
2350
2224
  Args:
2351
- input (Tensor): Tensor of any dimension.
2352
- The data type is float16, float32, bfloat16.
2225
+ input (Tensor): 2-D Tensor.
2353
2226
 
2354
2227
  Returns:
2355
- Tensor, with the same type and shape as the `input`.
2228
+ Tensor, when the data type of `input` is integer or bool, its data type is int64, otherwise it is the same as `input`, and size equals to 1.
2356
2229
 
2357
2230
  Raises:
2358
- TypeError: If dtype of `input` is not float16, float32, bfloat16.
2231
+ TypeError: If `input` is not a Tensor.
2232
+ ValueError: If the dimension of `input` is not equal to 2.
2233
+ TypeError: If the dtype of `input` is not one of float16, float32, float64, bool, uint8, int8, int16, int32, int64, complex64, complex128, bfloat16.
2359
2234
 
2360
2235
  Supported Platforms:
2361
2236
  ``Ascend``
2362
2237
 
2363
2238
  Examples:
2364
2239
  >>> import mindspore
2365
- >>> from mindspore import Tensor, mint
2366
2240
  >>> import numpy as np
2367
- >>> input = Tensor(np.array([[-1.0, 4.0, -8.0], [2.0, -5.0, 9.0]]), mindspore.float32)
2368
- >>> output = mint.nn.functional.selu(input)
2241
+ >>> from mindspore import Tensor, ops
2242
+ >>> input = Tensor(np.array([[10, 11, 12], [13, 14, 15], [16, 17, 18]]), mindspore.float32)
2243
+ >>> output = ops.trace_ext(input)
2369
2244
  >>> print(output)
2370
- [[-1.1113307 4.202804 -1.7575096]
2371
- [ 2.101402 -1.7462534 9.456309 ]]
2245
+ 42.0
2246
+ >>> input = Tensor(np.arange(1, 13).reshape(3, 4), mindspore.float32)
2247
+ >>> output = ops.trace_ext(input)
2248
+ >>> print(output)
2249
+ 18.0
2250
+ >>> input = Tensor(np.arange(12, 0, -1).reshape(4, 3), mindspore.float32)
2251
+ >>> output = ops.trace_ext(input)
2252
+ >>> print(output)
2253
+ 24.0
2372
2254
  """
2373
- return selu_impl(input)
2255
+ return trace_impl(input)
2374
2256