From 57f77ab233dd74b64c1549bfe71bbd6f694e133a Mon Sep 17 00:00:00 2001 From: Oceania2018 Date: Sun, 3 Nov 2019 07:23:12 -0600 Subject: [PATCH] data_flow_ops.stack_pop_v2 --- .../Operations/gen_data_flow_ops.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/TensorFlowNET.Core/Operations/gen_data_flow_ops.cs b/src/TensorFlowNET.Core/Operations/gen_data_flow_ops.cs index fcb1000f..65b86f04 100644 --- a/src/TensorFlowNET.Core/Operations/gen_data_flow_ops.cs +++ b/src/TensorFlowNET.Core/Operations/gen_data_flow_ops.cs @@ -285,5 +285,16 @@ namespace Tensorflow return _op.output; } + + public static Tensor stack_pop_v2(Tensor handle, TF_DataType elem_type, string name = null) + { + var _op = _op_def_lib._apply_op_helper("StackPopV2", name, new + { + handle, + elem_type + }); + + return _op.output; + } } }