| 50 | namespace grappler { |
| 51 | |
| 52 | static OpInfo::TensorProperties UnknownInput() { |
| 53 | OpInfo::TensorProperties input; |
| 54 | input.set_dtype(DataType::DT_INVALID); |
| 55 | input.mutable_shape()->set_unknown_rank(true); |
| 56 | return input; |
| 57 | } |
| 58 | |
| 59 | static std::vector<TensorProto> ExtractTensors(const AttrValue& attr_value) { |
| 60 | std::vector<TensorProto> tensors; |
no test coverage detected