| 1165 | } |
| 1166 | |
| 1167 | Status FusedBatchNormV3Shape(shape_inference::InferenceContext* c) { |
| 1168 | TF_RETURN_IF_ERROR(FusedBatchNormShape(c)); |
| 1169 | c->set_output(5, c->UnknownShape()); |
| 1170 | return Status::OK(); |
| 1171 | } |
| 1172 | |
| 1173 | Status FusedBatchNormExShape(shape_inference::InferenceContext* c) { |
| 1174 | TF_RETURN_IF_ERROR(FusedBatchNormV3Shape(c)); |
no test coverage detected