Update tf.DeviceIndex in TF MLIR ODS.

Op was missing a description field and this is autogenerated from TensorFlow op registry.

PiperOrigin-RevId: 316217919
Change-Id: Ibcf8e4bb4691e30d1e5e739ae4e4cbfe21228a3e
This commit is contained in:
Andy Ly 2020-06-12 19:14:10 -07:00 committed by TensorFlower Gardener
parent c45a3444af
commit 36140531e8

View File

@ -2384,6 +2384,9 @@ horizontal and vertices strides, `strides = [1, stride, stride, 1]`.
def TF_DeviceIndexOp : TF_Op<"DeviceIndex", [NoSideEffect]> {
let summary = "Return the index of device the op runs.";
let description = [{
}];
let arguments = (ins
StrArrayAttr:$device_names
);