aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_LookupTableRemoveV2.pbtxt
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-10-09 16:23:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-09 16:39:23 -0700
commit6c391166b8b6ba43d2b0151e6fb9cf14864131a2 (patch)
treec8c3c9eadade00f1a4e6cec2024e2a15bfd0b948 /tensorflow/core/api_def/base_api/api_def_LookupTableRemoveV2.pbtxt
parent2f5ebc0ea5e6d500ea8cd925234c569d6b32fd4e (diff)
Add 'remove' operation to MutableHashTable and MutableDenseHashTable.
PiperOrigin-RevId: 216443201
Diffstat (limited to 'tensorflow/core/api_def/base_api/api_def_LookupTableRemoveV2.pbtxt')
-rw-r--r--tensorflow/core/api_def/base_api/api_def_LookupTableRemoveV2.pbtxt24
1 files changed, 24 insertions, 0 deletions
diff --git a/tensorflow/core/api_def/base_api/api_def_LookupTableRemoveV2.pbtxt b/tensorflow/core/api_def/base_api/api_def_LookupTableRemoveV2.pbtxt
new file mode 100644
index 0000000000..333fe6f4b2
--- /dev/null
+++ b/tensorflow/core/api_def/base_api/api_def_LookupTableRemoveV2.pbtxt
@@ -0,0 +1,24 @@
+op {
+ graph_op_name: "LookupTableRemoveV2"
+ visibility: HIDDEN
+ endpoint {
+ name: "LookupTableRemove"
+ }
+ in_arg {
+ name: "table_handle"
+ description: <<END
+Handle to the table.
+END
+ }
+ in_arg {
+ name: "keys"
+ description: <<END
+Any shape. Keys of the elements to remove.
+END
+ }
+ summary: "Removes keys and its associated values from a table."
+ description: <<END
+The tensor `keys` must of the same type as the keys of the table. Keys not
+already in the table are silently ignored.
+END
+}