| 82 | } |
| 83 | |
| 84 | TensorShape TensorShape::with_last_dim(int64_t value) const { |
| 85 | TensorShape result = *this; |
| 86 | result.dims[rank - 1] = value; |
| 87 | ensure_positive_dims(result); |
| 88 | return result; |
| 89 | } |
| 90 | |
| 91 | std::string TensorShape::to_string() const { |
| 92 | std::ostringstream out; |
no test coverage detected