Skip to content

Commit

Permalink
Update ops-related pbtxt files.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 165652758
  • Loading branch information
tensorflower-gardener committed Aug 18, 2017
1 parent e313464 commit 641943f
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
31 changes: 31 additions & 0 deletions tensorflow/core/ops/compat/ops_history.v1.pbtxt
Expand Up @@ -19996,6 +19996,37 @@ op {
}
}
}
op {
name: "RemoteCall"
input_arg {
name: "target"
type: DT_STRING
}
input_arg {
name: "args"
type_list_attr: "Tin"
}
output_arg {
name: "output"
type_list_attr: "Tout"
}
attr {
name: "Tin"
type: "list(type)"
has_minimum: true
minimum: 1
}
attr {
name: "Tout"
type: "list(type)"
has_minimum: true
minimum: 1
}
attr {
name: "f"
type: "func"
}
}
op {
name: "RemoteFusedGraphExecute"
input_arg {
Expand Down
38 changes: 38 additions & 0 deletions tensorflow/core/ops/ops.pbtxt
Expand Up @@ -19607,6 +19607,44 @@ op {
}
summary: "Computes rectified linear gradients for a Relu operation."
}
op {
name: "RemoteCall"
input_arg {
name: "target"
description: "A fully specified device name where we want to run the function."
type: DT_STRING
}
input_arg {
name: "args"
description: "A list of arguments for the function."
type_list_attr: "Tin"
}
output_arg {
name: "output"
description: "A list of return values."
type_list_attr: "Tout"
}
attr {
name: "Tin"
type: "list(type)"
description: "The type list for the arguments."
has_minimum: true
minimum: 1
}
attr {
name: "Tout"
type: "list(type)"
description: "The type list for the return values."
has_minimum: true
minimum: 1
}
attr {
name: "f"
type: "func"
description: "The function to run remotely."
}
summary: "Runs function `f` on a remote device indicated by `target`."
}
op {
name: "RemoteFusedGraphExecute"
input_arg {
Expand Down

0 comments on commit 641943f

Please sign in to comment.