Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for special (0.2 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.h

    #define TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_PLUGINS_GCS_GCS_HELPER_H_
    
    #include <fstream>
    #include <string>
    
    class TempFile : public std::fstream {
     public:
      // We should specify openmode each time we call TempFile.
      TempFile(const std::string& temp_file_name, std::ios::openmode mode);
      TempFile(TempFile&& rhs);
      ~TempFile() override;
      const std::string getName() const;
      bool truncate();
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jun 26 14:56:58 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/tape.h

      // If false, all activations are deleted in the first call to ComputeGradient.
      // Else, only when this is destructed.
      bool persistent_;
    };
    
    // Describes a callback for special-cased and more efficient jvp computation.
    //
    // Could just be a simple typedef in ForwardAccumulator, but MSVC chokes on
    // that.
    template <typename Gradient>
    class ForwardFunction
    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)
  3. tensorflow/c/c_api.h

    //                           If set to 0, the function's name will be `fn_name`.
    //  num_opers - `num_opers` contains the number of elements in the `opers` array
    //              or a special value of -1 meaning that no array is given.
    //              The distinction between an empty array of operations and no
    //              array of operations is necessary to distinguish the case of
    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)
  4. tensorflow/c/c_api_experimental.h

    // overhead and copies.
    TF_CAPI_EXPORT extern TFE_TensorHandle* TFE_NewTensorHandleFromScalar(
        TF_DataType data_type, void* data, size_t len, TF_Status* status);
    
    // Specify the server_def that enables collective ops.
    // This is different to the above function in that it doesn't create remote
    // contexts, and remotely executing ops is not possible. It just enables
    // communication for collective ops.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///     if it exists but is not a directory.
      ///   * Might use any other error value for `status` to signal other errors.
      ///
      /// NOTE: The requirements specify that `TF_ALREADY_EXISTS` is not returned if
      /// directory exists. Similarly, `TF_NOT_FOUND` is not be returned, as the
      /// missing directory entry and all its descendants will be created by the
      /// plugin.
      ///
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top