Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PjRtDeviceExecutablePersistor (0.28 sec)

  1. 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)
  2. 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)
  3. 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