Home
last modified time | relevance | path

Searched refs:GetTensorInputShape (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore/core/ops/
Dlayer_norm_x_backprop_v2.cc31 auto x_shape = CheckAndConvertUtils::GetTensorInputShape(primitive->name(), input_args, 0); in LayerNormXBackpropV2InferShape()
32 …auto res_for_gamma_shape = CheckAndConvertUtils::GetTensorInputShape(primitive->name(), input_args… in LayerNormXBackpropV2InferShape()
Ddropout_do_mask.cc45 auto x_shape = CheckAndConvertUtils::GetTensorInputShape(op_name, input_args, 0); in InferShape()
46 auto mask_shape = CheckAndConvertUtils::GetTensorInputShape(op_name, input_args, 1); in InferShape()
Dones_like.cc33 return CheckAndConvertUtils::GetTensorInputShape(op_name, input_args, 0); in InferShape()
Dzeros_like.cc33 return CheckAndConvertUtils::GetTensorInputShape(op_name, input_args, 0); in InferShape()
DLayerNormXBackprop.cc31 auto x_shape = CheckAndConvertUtils::GetTensorInputShape(primitive->name(), input_args, 1); in LayerNormXBackpropInferShape()
Dreduce_sum.cc85 auto shape_ptr = CheckAndConvertUtils::GetTensorInputShape("ReduceSum", input_args, 0); in InferShape()
/third_party/mindspore/mindspore/core/ops/grad/
Dconv2d_backprop_filter.cc35 auto x_shape = CheckAndConvertUtils::GetTensorInputShape(prim_name, input_args, kInputIndex); in TransStrideTo4D()
36 auto dout_shape = CheckAndConvertUtils::GetTensorInputShape(prim_name, input_args, kDoutIndex); in TransStrideTo4D()
68 …auto shape_ptr = CheckAndConvertUtils::GetTensorInputShape(prim_name, input_args, kFilterSizeIdex); in Conv2DBackpropFilterInferShape()
Ddropout_grad.cc55 auto shape = CheckAndConvertUtils::GetTensorInputShape(op_name, input_args, dy_index); in DropoutGradInfer()
Dconv2d_backprop_input.cc97 auto shape_ptr = CheckAndConvertUtils::GetTensorInputShape(prim_name, input_args, kSizeIndex); in Conv2DBackpropInputInferShape()
/third_party/mindspore/mindspore/core/utils/
Dcheck_convert_utils.h221 static abstract::ShapePtr GetTensorInputShape(const std::string &prim_name,
Dcheck_convert_utils.cc417 abstract::ShapePtr CheckAndConvertUtils::GetTensorInputShape(const std::string &prim_name, in GetTensorInputShape() function in mindspore::CheckAndConvertUtils