Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for true (0.17 sec)

  1. tensorflow/c/c_api.h

    typedef struct TF_AttrMetadata {
      // A boolean: 1 if the attribute value is a list, 0 otherwise.
      unsigned char is_list;
    
      // Length of the list if is_list is true. Undefined otherwise.
      int64_t list_size;
    
      // Type of elements of the list if is_list != 0.
      // Type of the single value stored in the attribute if is_list == 0.
      TF_AttrType type;
    
    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/experimental/filesystem/filesystem_interface.h

      void (*path_exists)(const TF_Filesystem* filesystem, const char* path,
                          TF_Status* status);
    
      /// Checks if all values in `paths` exist in the filesystem.
      ///
      /// Returns `true` if and only if calling `path_exists` on each entry in
      /// `paths` would set `status` to `TF_OK`.
      ///
      /// Caller guarantees that:
      ///   * `paths` has exactly `num_files` entries.
    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