| 110 | |
| 111 | template <> |
| 112 | Status SerializeSparseOp<tstring>::Serialize(const Tensor& input, |
| 113 | tstring* result) { |
| 114 | TensorProto proto; |
| 115 | input.AsProtoTensorContent(&proto); |
| 116 | *result = proto.SerializeAsString(); |
| 117 | return Status::OK(); |
| 118 | } |
| 119 | |
| 120 | REGISTER_KERNEL_BUILDER(Name("SerializeSparse") |
| 121 | .Device(DEVICE_CPU) |
no test coverage detected