Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SummarizeDeviceNames (0.19 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

        }
        if (TF_GetCode(status) != TF_OK) return result;
      }
      result.emplace(std::move(per_device_outputs));
      return result;
    }
    
    std::vector<std::string> ParallelDevice::SummarizeDeviceNames() const {
      std::vector<DeviceNameUtils::ParsedName> parsed_components(
          underlying_devices_.size());
      for (int component_index = 0; component_index < underlying_devices_.size();
           ++component_index) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Feb 09 07:47:20 GMT 2024
    - 25.4K bytes
    - Viewed (1)
  2. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      // Device strings for component devices that only include a
      // worker/task/replica if any of those differ across components. Useful for
      // printing debug messages.
      std::vector<std::string> SummarizeDeviceNames() const;
    
     private:
      // A sequence of device names, indicating which devices replicated operations
      // are forwarded to.
      const std::vector<std::string> underlying_devices_;
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 25 15:21:13 GMT 2023
    - 12.9K bytes
    - Viewed (0)
Back to top