Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ancestor (0.2 sec)

  1. tensorflow/c/c_api.cc

      return response;
    }
    
    int TF_DeviceListCount(const TF_DeviceList* list) {
      return list->response.size();
    }
    
    #define TF_DEVICELIST_METHOD(return_type, method_name, accessor, err_val) \
      return_type method_name(const TF_DeviceList* list, const int index,     \
                              TF_Status* status) {                            \
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      void (*create_dir)(const TF_Filesystem* filesystem, const char* path,
                         TF_Status* status);
    
      /// Creates the directory specified by `path` and all needed ancestors.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if directory was created.
      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if `path` is invalid or
      ///     if it exists but is not a directory.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top