| 176 | } |
| 177 | |
| 178 | void TensorBatch::popBack(int tensorCount) |
| 179 | { |
| 180 | m_impl.popTensors(tensorCount); |
| 181 | m_list.erase(m_list.end() - tensorCount, m_list.end()); |
| 182 | } |
| 183 | |
| 184 | void TensorBatch::clear() |
| 185 | { |
nothing calls this directly
no test coverage detected