Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PjRtDeviceExecutablePersistor (0.82 sec)

  1. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

        TF_CHECK_OK(pjrt_client_or.status());
        pjrt_client_ = pjrt_client_or.value();
        device_compiler_ = new PjRtDeviceCompiler(
            std::make_unique<PjRtDeviceExecutablePersistor>(
                PjRtDeviceExecutablePersistor::Config(), jit_device_type),
            std::make_unique<PjRtDeviceCompilerClient>(pjrt_client_));
        profiler_ = new DeviceCompilationProfiler();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

    }
    
    PjRtDeviceCompiler* CreatePjRtDeviceCompiler(DeviceType device_type,
                                                 xla::PjRtClient* pjrt_client) {
      auto persistor = std::make_unique<PjRtDeviceExecutablePersistor>(
          PjRtDeviceExecutablePersistor::Config(), device_type);
      auto compiler_client =
          std::make_unique<PjRtDeviceCompilerClient>(pjrt_client);
      return new PjRtDeviceCompiler(std::move(persistor),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_platform_info.cc

    using PjRtDeviceCompiler =
        DeviceCompiler<xla::PjRtLoadedExecutable, xla::PjRtClient>;
    using XlaDeviceExecutablePersistor =
        DeviceExecutablePersistor<xla::LocalExecutable, xla::LocalClient>;
    using PjRtDeviceExecutablePersistor =
        DeviceExecutablePersistor<xla::PjRtLoadedExecutable, xla::PjRtClient>;
    
    XlaDeviceCompiler* CreateXlaDeviceCompiler(
        const XlaDeviceExecutablePersistor::Config& persistor_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_executable_persistor_test.cc

    }
    
    TEST_F(DeviceExecutionPersistorTest, PersistPjRtAndXlaExecutables) {
      // Persist PJRT executable.
      PjRtDeviceExecutablePersistor::Config pjrt_config(
          /*persistent_cache_directory=*/cache_dir_,
          /*disable_strict_signature_checks=*/false,
          /*persistence_prefix=*/"xla");
      PjRtDeviceExecutablePersistor pjrt_persistor(
          pjrt_config, DefaultPjRtOptions().device_type);
    
      MockPjRtCompilerClient mock_pjrt_client;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util_test.cc

        TF_CHECK_OK(pjrt_client_or.status());
        pjrt_client_ = pjrt_client_or.value();
        device_compiler_ = new PjRtDeviceCompiler(
            std::make_unique<PjRtDeviceExecutablePersistor>(
                PjRtDeviceExecutablePersistor::Config(), jit_device_type),
            std::make_unique<PjRtDeviceCompilerClient>(pjrt_client_));
        profiler_ = new DeviceCompilationProfiler();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top