Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GetOrCreatePjRtDeviceCompilerAndProfiler (0.72 sec)

  1. tensorflow/compiler/jit/xla_platform_info_test.cc

      params.device = device;
      OpKernelContext ctx(&params, 0);
    
      PjRtDeviceCompiler* pjrt_device_compiler = nullptr;
      DeviceCompilationProfiler* profiler = nullptr;
      TF_EXPECT_OK(GetOrCreatePjRtDeviceCompilerAndProfiler(
          ctx, platform_info, device_setup_.flr(), &pjrt_device_compiler,
          &profiler));
      core::ScopedUnref pjrt_device_compiler_ref(pjrt_device_compiler);
      core::ScopedUnref profiler_ref(profiler);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 14 15:17:12 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_platform_info.cc

      *xla_device_compiler = CreateXlaDeviceCompiler(
          persistor_config, compilation_device_type, client);
      return absl::OkStatus();
    }
    
    Status GetOrCreatePjRtDeviceCompilerAndProfiler(
        const XlaPlatformInfo& platform_info, ResourceMgr* rm,
        FunctionLibraryRuntime* flr, PjRtDeviceCompiler** pjrt_device_compiler,
        DeviceCompilationProfiler** profiler) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/pjrt_compile_util.cc

        xla::PjRtClient** client, xla::PjRtLoadedExecutable** executable) {
      PjRtDeviceCompiler* pjrt_device_compiler;
      DeviceCompilationProfiler* profiler;
      TF_RETURN_IF_ERROR(GetOrCreatePjRtDeviceCompilerAndProfiler(
          platform_info, rm, flr, &pjrt_device_compiler, &profiler));
    
      // Hold the reference to the PJRT device compiler and profiler during
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_platform_info.h

    // non-XLA devices aren't supported yet. This is because:
    // 1. PjRtClient doesn't support data transfer for non-XLA devices yet
    // 2. Fetching the PjRtClient for non-XLA devices is also not supported yet
    Status GetOrCreatePjRtDeviceCompilerAndProfiler(
        const OpKernelContext& ctx, const XlaPlatformInfo& platform_info,
        FunctionLibraryRuntime* flr,
        DeviceCompiler<xla::PjRtLoadedExecutable, xla::PjRtClient>**
            pjrt_device_compiler,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        PjRtDeviceCompiler** pjrt_device_compiler,
        DeviceCompilationProfiler** profiler,
        const XlaCompiler::CompilationResult** result,
        xla::PjRtLoadedExecutable** executable) {
      TF_RETURN_IF_ERROR(GetOrCreatePjRtDeviceCompilerAndProfiler(
          *ctx, platform_info_, ctx->function_library(), pjrt_device_compiler,
          profiler));
    
      XlaCompiler::Options options =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top