Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetOrCreatePjRtDeviceCompilerAndProfiler (0.44 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/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