| 500 | } |
| 501 | |
| 502 | bool Graph::AddTensor(Tensor* tensor, bool set_owner) |
| 503 | { |
| 504 | tensor_map_[tensor->GetName()] = tensor; |
| 505 | |
| 506 | if(set_owner) |
| 507 | SetTensorOwner(tensor); |
| 508 | |
| 509 | return true; |
| 510 | } |
| 511 | |
| 512 | void Graph::PopulateDynamicShape(void) |
| 513 | { |
no test coverage detected