Update ops-related pbtxt files.

PiperOrigin-RevId: 161726324
This commit is contained in:
A. Unique TensorFlower 2017-07-12 15:21:44 -07:00 committed by TensorFlower Gardener
parent fd5530d6ea
commit 9a172989e0
2 changed files with 54 additions and 0 deletions

View File

@ -11204,6 +11204,18 @@ op {
} }
is_stateful: true is_stateful: true
} }
op {
name: "IteratorFromStringHandle"
input_arg {
name: "string_handle"
type: DT_STRING
}
output_arg {
name: "resource_handle"
type: DT_RESOURCE
}
is_stateful: true
}
op { op {
name: "IteratorGetNext" name: "IteratorGetNext"
input_arg { input_arg {
@ -11228,6 +11240,18 @@ op {
} }
is_stateful: true is_stateful: true
} }
op {
name: "IteratorToStringHandle"
input_arg {
name: "resource_handle"
type: DT_RESOURCE
}
output_arg {
name: "string_handle"
type: DT_STRING
}
is_stateful: true
}
op { op {
name: "L2Loss" name: "L2Loss"
input_arg { input_arg {

View File

@ -10567,6 +10567,21 @@ op {
summary: "Releases any resources used by the given iterator." summary: "Releases any resources used by the given iterator."
is_stateful: true is_stateful: true
} }
op {
name: "IteratorFromStringHandle"
input_arg {
name: "string_handle"
description: "A string representation of the given handle."
type: DT_STRING
}
output_arg {
name: "resource_handle"
description: "A handle to an iterator resource."
type: DT_RESOURCE
}
summary: "Converts the given string representing a handle to an iterator to a resource."
is_stateful: true
}
op { op {
name: "IteratorGetNext" name: "IteratorGetNext"
input_arg { input_arg {
@ -10592,6 +10607,21 @@ op {
summary: "Gets the next output from the given iterator." summary: "Gets the next output from the given iterator."
is_stateful: true is_stateful: true
} }
op {
name: "IteratorToStringHandle"
input_arg {
name: "resource_handle"
description: "A handle to an iterator resource."
type: DT_RESOURCE
}
output_arg {
name: "string_handle"
description: "A string representation of the given handle."
type: DT_STRING
}
summary: "Converts the given `resource_handle` representing an iterator to a string."
is_stateful: true
}
op { op {
name: "L2Loss" name: "L2Loss"
input_arg { input_arg {