| 319 | TensorProto* tensor); |
| 320 | |
| 321 | inline bool CompressTensorProtoInPlace(TensorProto* tensor) { |
| 322 | static const int64 kDefaultMinNumElements = 64; |
| 323 | static const float kDefaultMinCompressionRatio = 2.0f; |
| 324 | return CompressTensorProtoInPlace(kDefaultMinNumElements, |
| 325 | kDefaultMinCompressionRatio, tensor); |
| 326 | } |
| 327 | |
| 328 | } // namespace tensor |
| 329 | } // namespace tensorflow |
no outgoing calls