Convenience accessor for the tensor shape.
| 266 | |
| 267 | /// Convenience accessor for the tensor shape. |
| 268 | int64 NumElements() const { return shape().num_elements(); } |
| 269 | |
| 270 | bool IsSameSize(const Tensor& b) const { |
| 271 | return shape().IsSameSize(b.shape()); |
no test coverage detected