| 155 | } |
| 156 | |
| 157 | void TensorBatch::pushBack(Tensor &tensor) |
| 158 | { |
| 159 | m_impl.pushBack(tensor.impl()); |
| 160 | m_list.push_back(tensor.shared_from_this()); |
| 161 | } |
| 162 | |
| 163 | void TensorBatch::pushBackMany(std::vector<std::shared_ptr<Tensor>> &tensorList) |
| 164 | { |
no test coverage detected