| 157 | } |
| 158 | |
| 159 | TensorID Graph::create_tensor(const TensorDescriptor &desc) |
| 160 | { |
| 161 | TensorID tid = _tensors.size(); |
| 162 | auto tensor = std::make_unique<Tensor>(tid, desc); |
| 163 | _tensors.push_back(std::move(tensor)); |
| 164 | |
| 165 | return tid; |
| 166 | } |
| 167 | |
| 168 | std::string Graph::name() const |
| 169 | { |
no test coverage detected