Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AddWhileInputHack (0.16 sec)

  1. tensorflow/c/python_api.cc

    void SetHandleShapeAndType(TF_Graph* graph, TF_Output output, const void* proto,
                               size_t proto_len, TF_Status* status) {
      TF_SetHandleShapeAndType(graph, output, proto, proto_len, status);
    }
    
    void AddWhileInputHack(TF_Graph* graph, TF_Output new_src, TF_Operation* dst,
                           TF_Status* status) {
      TF_AddWhileInputHack(graph, new_src, dst, status);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/c/python_api.h

    // This method is used to add a new input edge to 'dst', which must be a While
    // op. The While op's "T" attribute must have already been updated to include
    // the new edge. This is used to construct tf.while_loop gradients.
    void AddWhileInputHack(TF_Graph* graph, TF_Output new_src, TF_Operation* dst,
                           TF_Status* status);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

                              TF_Status* status) {
      using tensorflow::RecordMutation;
      mutex_lock l(graph->mu);
      status->status = graph->graph.AddWhileInputHack(&new_src.oper->node,
                                                      new_src.index, &dst->node);
      if (TF_GetCode(status) == TF_OK) {
        // This modification only updates the destination node for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top