| 143 | } |
| 144 | |
| 145 | bool BufferMap::IsTensorFlowTensor(int tensor_index) const { |
| 146 | return HasTensor(tensor_index) && owned_by_tf_.count(tensor_index) > 0; |
| 147 | } |
| 148 | |
| 149 | tensorflow::Tensor BufferMap::GetTensor(int tensor_index) const { |
| 150 | return id_to_tensor_.at(tensor_index); |