Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for reported (0.2 sec)

  1. tensorflow/c/c_api.h

        TF_ImportGraphDefOptions* opts, unsigned char uniquify_prefix);
    
    // Set any imported nodes with input `src_name:src_index` to have that input
    // replaced with `dst`. `src_name` refers to a node in the graph to be imported,
    // `dst` references a node already existing in the graph being imported into.
    // `src_name` is copied and has no lifetime requirements.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. tensorflow/c/eager/immediate_execution_context.h

    namespace tensorflow {
    class EagerExecutor;
    class EagerContext;
    class CustomDevice;
    class CustomDeviceOpHandler;
    class Device;
    
    // LINT.IfChange
    // Note: Keep in sync with exported copy of enum in eager/c_api.h.
    enum ContextDevicePlacementPolicy {
      // Running operations with input tensors on the wrong device will fail.
      DEVICE_PLACEMENT_EXPLICIT = 0,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_internal.h

      // TF_Graph may only / must be deleted when
      //   sessions.size() == 0 && delete_requested == true
      //
      // TODO(b/74949947): mutations currently trigger a warning instead of a bad
      // status, this should be reverted when possible.
      tensorflow::gtl::FlatMap<TF_Session*, tensorflow::string> sessions
          TF_GUARDED_BY(mu);
      bool delete_requested TF_GUARDED_BY(mu);  // set true by TF_DeleteGraph
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sat May 13 00:49:12 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  4. tensorflow/c/eager/tape.h

                  "Internal state of the gradient tape is invalid: "
                  "none of operations outputs match expected tensor");
            }
          } else {
            // This target tensor was not generated by any operation recorded on
            // the tape, so no gradient needs to be computed from it unless this
            // target is also a source.
            auto source_tensor = sources_that_are_targets.find(id);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
Back to top