| 305 | } |
| 306 | |
| 307 | Status TensorHandle::NumElements(int64* num_elements) { |
| 308 | DCHECK(num_elements != nullptr); |
| 309 | TF_RETURN_IF_ERROR(WaitReady()); |
| 310 | return tensor_handle_data_->NumElements(num_elements); |
| 311 | } |
| 312 | |
| 313 | #if !defined(IS_MOBILE_PLATFORM) |
| 314 | Status TensorHandle::RemoteAddress(Device* d, int64* op_id, |
no outgoing calls