Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for compiler_client (0.24 sec)

  1. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

      auto persistor = std::make_unique<XlaDeviceExecutablePersistor>(
          XlaDeviceExecutablePersistor::Config(), device_type);
      auto compiler_client =
          std::make_unique<XlaDeviceCompilerClient>(local_client);
      return new XlaDeviceCompiler(std::move(persistor),
                                   std::move(compiler_client));
    }
    
    PjRtDeviceCompiler* CreatePjRtDeviceCompiler(DeviceType device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor.h

          uint64 signature_hash, const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& compilation_result,
          const ExecutableType& executable,
          DeviceCompilerClient<ExecutableType, ClientType>* compiler_client) const;
    
      // Saves the cache entry in the file directory supplied during the
      // construction of this class. Overwrites existing entries.
      Status SaveSerializedEntry(const XlaSerializedCacheEntry& entry) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler_disable_test.cc

          XlaDeviceExecutablePersistor::Config(), device_type);
      auto compiler_client = std::make_unique<XlaDeviceCompilerClient>(client);
      auto xla_device_compiler =
          new DeviceCompiler<xla::LocalExecutable, xla::LocalClient>(
              std::move(persistor), std::move(compiler_client));
      core::ScopedUnref xla_device_compiler_ref(xla_device_compiler);
    
      auto profiler = new DeviceCompilationProfiler();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler.h

        std::unique_ptr<DeviceExecutablePersistor<ExecutableType, ClientType>>
            persistor,
        std::unique_ptr<DeviceCompilerClient<ExecutableType, ClientType>>
            compiler_client)
        : persistor_(std::move(persistor)),
          compiler_client_(std::move(compiler_client)) {
      cache_ = std::make_unique<DeviceCompilationCache<ExecutableType>>();
      async_compiler_threads_ = std::make_unique<tensorflow::thread::ThreadPool>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_platform_info.cc

        // cross platform lowering.
        *xla_device_compiler = new XlaDeviceCompiler(/*persistor=*/nullptr,
                                                     /*compiler_client=*/nullptr);
        return absl::OkStatus();
      }
      std::string persistent_cache_directory =
          GetPersistentCacheDirectory(platform_info.device_type());
    
      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)
  6. tensorflow/compiler/jit/device_compiler_test.cc

                                                 "graph", std::move(graph), args,
                                                 &compilation_result));
        return xla_device_compiler_->compiler_client()->BuildExecutable(
            GetDefaultXlaOptions(), compilation_result);
      }
    
      std::unique_ptr<FunctionLibraryDefinition> flib_def_;
      JitCompilationListener* listener_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top