Browse Source

control_flow_ops.control_trigger

tags/v0.12
Oceania2018 6 years ago
parent
commit
3377f12b35
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      src/TensorFlowNET.Core/Operations/gen_control_flow_ops.cs

+ 9
- 0
src/TensorFlowNET.Core/Operations/gen_control_flow_ops.cs View File

@@ -22,6 +22,15 @@ namespace Tensorflow
{
public static OpDefLibrary _op_def_lib = new OpDefLibrary();

public static Operation control_trigger(string name = null)
{
var _op = _op_def_lib._apply_op_helper("ControlTrigger", name, new
{
});

return _op;
}

/// <summary>
/// Creates or finds a child frame, and makes `data` available to the child frame.
/// </summary>


Loading…
Cancel
Save