Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Maps (1.19 sec)

  1. tensorflow/c/checkpoint_reader.h

                     std::unique_ptr<tensorflow::Tensor>* out_tensor,
                     TF_Status* out_status) const;
    
     private:
      // Uses "v2_reader_" to build "var name -> shape" and "var name -> data type"
      // maps; both owned by caller.
      // REQUIRES: "v2_reader_ != nullptr && v2_reader_.status().ok()".
      std::pair<std::unique_ptr<TensorSliceReader::VarToShapeMap>,
                std::unique_ptr<TensorSliceReader::VarToDataTypeMap> >
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_internal.h

    };
    
    struct TF_Graph {
      TF_Graph();
    
      mutable tensorflow::mutex mu;
      tensorflow::Graph graph TF_GUARDED_BY(mu);
    
      // Runs shape inference.
      tensorflow::ShapeRefiner refiner TF_GUARDED_BY(mu);
    
      // Maps from name of an operation to the Node* in 'graph'.
      std::unordered_map<tensorflow::string, tensorflow::Node*> name_map
          TF_GUARDED_BY(mu);
    
      // The keys of this map are all the active sessions using this graph. Each
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sat May 13 00:49:12 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.h

                                                        void* device_info,
                                                        TF_Status* status);
    
    // Returns whether `device_name` maps to a registered custom device.
    TF_CAPI_EXPORT extern bool TFE_IsCustomDevice(TFE_Context* ctx,
                                                  const char* device_name);
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  4. tensorflow/c/eager/tape.h

          const std::function<void(BackwardFunction*)>& backward_function_deleter,
          const std::vector<Gradient*>& in_grads, absl::Span<Gradient*> out_grads);
    
      // Maps from tensor IDs to corresponding JVPs.
      std::unordered_map<int64_t, Gradient*> accumulated_gradients_;
      // Not owned; provides operations on Tensors which are currently only
      // available in language bindings (e.g. Python).
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  5. tensorflow/c/c_api.h

    // in this address space.
    TF_CAPI_EXPORT extern TF_Buffer* TF_GetAllOpList(void);
    
    // TF_ApiDefMap encapsulates a collection of API definitions for an operation.
    //
    // This object maps the name of a TensorFlow operation to a description of the
    // API to generate for it, as defined by the ApiDef protocol buffer (
    // https://www.tensorflow.org/code/tensorflow/core/framework/api_def.proto)
    //
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
Back to top