| 111 | } |
| 112 | |
| 113 | void TensorBufferImpl::Swap(TensorBufferImpl* other) { |
| 114 | std::swap(buffer_, other->buffer_); |
| 115 | std::swap(buffer_size_, other->buffer_size_); |
| 116 | std::swap(shape_, other->shape_); |
| 117 | std::swap(data_type_, other->data_type_); |
| 118 | } |
| 119 | |
| 120 | } // namespace detail |
| 121 |
no outgoing calls
no test coverage detected