Skip to content

Commit 57f77ab

Browse files
committed
data_flow_ops.stack_pop_v2
1 parent 07ddb74 commit 57f77ab

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/TensorFlowNET.Core/Operations/gen_data_flow_ops.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,5 +285,16 @@ public static Tensor stack_push_v2(Tensor handle, Tensor elem, bool swap_memory
285285

286286
return _op.output;
287287
}
288+
289+
public static Tensor stack_pop_v2(Tensor handle, TF_DataType elem_type, string name = null)
290+
{
291+
var _op = _op_def_lib._apply_op_helper("StackPopV2", name, new
292+
{
293+
handle,
294+
elem_type
295+
});
296+
297+
return _op.output;
298+
}
288299
}
289300
}

0 commit comments

Comments
 (0)