Fix a comment about device/op_device.

PiperOrigin-RevId: 311058019
Change-Id: Icaf5be7bb456f3b38b4057da6de51214ac9716a0
This commit is contained in:
Yujing Zhang 2020-05-11 21:51:28 -07:00 committed by TensorFlower Gardener
parent 6598d11e8b
commit bec0b38233
1 changed files with 3 additions and 3 deletions

View File

@ -21,11 +21,11 @@ message RemoteTensorHandle {
int64 op_id = 1; int64 op_id = 1;
// The index into the outputs of the operation that produced this tensor. // The index into the outputs of the operation that produced this tensor.
int32 output_num = 2; int32 output_num = 2;
// Device of the operation that produced this tensor. Cannot be empty. // Device where the tensor is located. Cannot be empty.
// For multi-device functions, it's the default device passed to placer. // For multi-device functions, it's the default device passed to placer.
string device = 3; string device = 3;
// Device where the tensor is located. Can be empty if the operation producing // Device of the operation producing this tensor. Can be empty if the
// this tensor is a multi-device function. // operation producing this tensor is a multi-device function.
string op_device = 4; string op_device = 4;
// Tensor type. // Tensor type.
DataType dtype = 5; DataType dtype = 5;