Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetPjRtDeviceCompilationProfilerResourceName (0.79 sec)

  1. tensorflow/compiler/jit/xla_compile_util_test.cc

      EXPECT_EQ(
          GetPjRtDeviceCompilationProfilerResourceName(DeviceType(DEVICE_TPU)),
          "pjrt_device_compilation_profiler_TPU");
      EXPECT_EQ(
          GetPjRtDeviceCompilationProfilerResourceName(DeviceType(DEVICE_TPU_NODE)),
          "pjrt_device_compilation_profiler_TPU");
      EXPECT_EQ(
          GetPjRtDeviceCompilationProfilerResourceName(DeviceType(DEVICE_CPU)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 21:48:05 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compile_util.h

    std::string GetPjRtDeviceCompilerResourceName(const DeviceType& device_type);
    
    // Gets the resource name of the DeviceCompilationProfiler for `device_type`
    // when PjRt is used for compilation and execution.
    std::string GetPjRtDeviceCompilationProfilerResourceName(
        const DeviceType& device_type);
    
    // Gets the ResourceMgr where the DeviceCompiler is/should be stored for the
    // given `device_type`.
    absl::StatusOr<ResourceMgr*> GetResourceMgrForDeviceCompiler(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_compile_util.cc

    std::string GetPjRtDeviceCompilerResourceName(const DeviceType& device_type) {
      return absl::StrCat(kPjRtDeviceCompilerResourceName, "_",
                          device_type.type_string());
    }
    
    std::string GetPjRtDeviceCompilationProfilerResourceName(
        const DeviceType& device_type) {
      return absl::StrCat(kPjRtDeviceCompilationProfilerResourceName, "_",
                          device_type.type_string());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_platform_info.cc

      const auto& device_type = platform_info.device_type();
      const std::string& compiler_name =
          GetPjRtDeviceCompilerResourceName(device_type);
      const std::string& profiler_name =
          GetPjRtDeviceCompilationProfilerResourceName(device_type);
      bool deleted_old_device_compiler = false;
    
      // Lookup the DeviceCompiler, create one if not found.
      Status s = rm->Lookup<PjRtDeviceCompiler>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top