Searched refs:data_format_ptr (Results 1 – 3 of 3) sorted by relevance
52 auto data_format_ptr = primitive->GetAttr("format"); in InferShape() local54 if (data_format_ptr != nullptr) { in InferShape()55 data_format = CheckAndConvertUtils::GetAndCheckFormat(data_format_ptr); in InferShape()
151 auto data_format_ptr = primitive->GetAttr("format"); in InferImplBatchNorm() local152 MS_EXCEPTION_IF_NULL(data_format_ptr); in InferImplBatchNorm()153 int64_t data_format = GetAndCheckFormat(data_format_ptr); in InferImplBatchNorm()359 auto data_format_ptr = primitive->GetAttr("format"); in InferImplBiasAdd() local361 if (data_format_ptr != nullptr) { in InferImplBiasAdd()362 data_format = GetAndCheckFormat(data_format_ptr); in InferImplBiasAdd()
54 auto data_format_ptr = primitive_ptr->GetAttr(kAttrFormat); in NeedUpdate() local55 MS_EXCEPTION_IF_NULL(data_format_ptr); in NeedUpdate()57 bool result = CheckAndConvertUtils::GetDataFormatEnumValue(data_format_ptr, &data_format); in NeedUpdate()