Home
last modified time | relevance | path

Searched refs:CompileOnlyService (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dcompile_only_service.cc39 /* static */ StatusOr<std::unique_ptr<CompileOnlyService>>
40 CompileOnlyService::NewService(se::Platform* platform) { in NewService()
46 /* static */ StatusOr<std::unique_ptr<CompileOnlyService>>
47 CompileOnlyService::NewService(const ServiceOptions& options) { in NewService()
55 std::unique_ptr<CompileOnlyService> service( in NewService()
56 new CompileOnlyService(options, compiler)); in NewService()
60 CompileOnlyService::CompileOnlyService(const ServiceOptions& options, in CompileOnlyService() function in xla::CompileOnlyService
65 CompileOnlyService::CompileAheadOfTime( in CompileAheadOfTime()
Dcompile_only_service.h31 class CompileOnlyService : public Service {
36 static StatusOr<std::unique_ptr<CompileOnlyService>> NewService(
38 static StatusOr<std::unique_ptr<CompileOnlyService>> NewService(
91 explicit CompileOnlyService(const ServiceOptions& options,
93 CompileOnlyService(const CompileOnlyService&) = delete;
94 void operator=(const CompileOnlyService&) = delete;
/external/tensorflow/tensorflow/compiler/xla/client/
Dcompile_only_client.h34 explicit CompileOnlyClient(CompileOnlyService* service) in CompileOnlyClient()
70 CompileOnlyService* compiler_service_;
Dcompile_only_client.cc39 std::vector<CompileOnlyService::AotXlaComputationInstance> service_instances; in CompileAheadOfTime()
43 CompileOnlyService::AotXlaComputationInstance& service_instance = in CompileAheadOfTime()
Dclient_library.h130 std::unique_ptr<CompileOnlyService> service;
Dclient_library.cc154 CompileOnlyService::NewService(platform)); in GetOrCreateCompileOnlyClient()