aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_StatefulPartitionedCall.pbtxt
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/api_def/base_api/api_def_StatefulPartitionedCall.pbtxt')
-rw-r--r--tensorflow/core/api_def/base_api/api_def_StatefulPartitionedCall.pbtxt25
1 files changed, 25 insertions, 0 deletions
diff --git a/tensorflow/core/api_def/base_api/api_def_StatefulPartitionedCall.pbtxt b/tensorflow/core/api_def/base_api/api_def_StatefulPartitionedCall.pbtxt
new file mode 100644
index 0000000000..c4cb4e362a
--- /dev/null
+++ b/tensorflow/core/api_def/base_api/api_def_StatefulPartitionedCall.pbtxt
@@ -0,0 +1,25 @@
+
+op {
+ graph_op_name: "StatefulPartitionedCall"
+ in_arg {
+ name: "args"
+ description: "A list of input tensors."
+ }
+ out_arg {
+ name: "output"
+ description: "A list of return values."
+ }
+ attr { name: "Tin" description: "A list of input types." }
+ attr { name: "Tout" description: "A list of output types." }
+ attr {
+ name: "f"
+ description: <<END
+ A function that takes 'args', a list of tensors, and returns 'output',
+ another list of tensors. Input and output types are specified by 'Tin'
+ and 'Tout'. The function body of f will be placed and partitioned across
+ devices, setting this op apart from the regular Call op. This op is
+ stateful.
+END
+ }
+ summary: "returns `f(inputs)`, where `f`'s body is placed and partitioned."
+}