Searched refs:program_cache (Results 1 – 16 of 16) sorted by relevance
| /external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
| D | program_cache.cc | 69 ProgramCache::ProgramCache(ProgramCache&& program_cache) in ProgramCache() argument 70 : programs_(std::move(program_cache.programs_)) {} in ProgramCache() 72 ProgramCache& ProgramCache::operator=(ProgramCache&& program_cache) { in operator =() argument 73 if (this != &program_cache) { in operator =() 74 programs_ = std::move(program_cache.programs_); in operator =()
|
| D | environment.h | 52 ProgramCache* program_cache() { return &program_cache_; } in program_cache() function 53 const ProgramCache* program_cache() const { return &program_cache_; } in program_cache() function
|
| D | program_cache.h | 39 ProgramCache(ProgramCache&& program_cache); 40 ProgramCache& operator=(ProgramCache&& program_cache);
|
| D | BUILD | 256 ":program_cache", 307 ":program_cache", 442 name = "program_cache", 443 srcs = ["program_cache.cc"], 444 hdrs = ["program_cache.h"],
|
| D | cl_operation.cc | 176 absl::Status ClOperation::RestoreDeserialized(const ProgramCache& program_cache, in RestoreDeserialized() argument 183 program_cache.GetKernel(kernel_fingerprint_, "main_function", &kernel_)); in RestoreDeserialized()
|
| D | api.cc | 924 if (environment_.program_cache() && in BuildSerializedModel() 927 environment_.program_cache() in BuildSerializedModel() 949 if (environment_.program_cache() && in NewInferenceBuilder() 952 environment_.program_cache() in NewInferenceBuilder() 969 if (environment_.program_cache() && in NewInferenceBuilder() 972 environment_.program_cache() in NewInferenceBuilder() 987 environment_.program_cache() in GetSerializedBinaryCache()
|
| D | inference_context.cc | 263 creation_context.cache = env->program_cache(); in InitFromGpuModel() 312 auto encoded_fb = Encode(*env->GetDevicePtr(), *env->program_cache(), in InitFromGpuModel() 353 RETURN_IF_ERROR(env->program_cache()->AddProgramBinary( in RestoreDeserialized() 390 *env->program_cache(), fingerprint, env->GetDevicePtr()->GetInfo(), in RestoreDeserialized() 928 const CLDevice& device, const ProgramCache& program_cache, in Encode() argument 951 program_cache.GetProgramBinary(fingerprint, &program_binary).IgnoreError(); in Encode()
|
| D | cl_operation.h | 120 absl::Status RestoreDeserialized(const ProgramCache& program_cache,
|
| D | inference_context.h | 115 const CLDevice& device, const ProgramCache& program_cache,
|
| /external/tensorflow/tensorflow/lite/delegates/gpu/cl/kernels/ |
| D | cl_test.cc | 78 creation_context.cache = env_.program_cache(); in ExecuteGpuOperationInternal()
|
| D | converter.cc | 176 return environment->program_cache()->GetOrCreateCLKernel( in Init() 281 return environment->program_cache()->GetOrCreateCLKernel( in Init() 386 return environment->program_cache()->GetOrCreateCLKernel( in Init()
|
| /external/mesa3d/src/gallium/drivers/zink/ |
| D | zink_context.h | 102 struct hash_table *program_cache; member
|
| D | zink_draw.c | 165 struct hash_entry *entry = _mesa_hash_table_search(ctx->program_cache, in get_gfx_program() 170 entry = _mesa_hash_table_insert(ctx->program_cache, prog->shaders, prog); in get_gfx_program()
|
| D | zink_compiler.c | 367 _mesa_hash_table_remove_key(ctx->program_cache, prog->shaders); in zink_shader_free()
|
| D | zink_context.c | 1323 ctx->program_cache = _mesa_hash_table_create(NULL, in zink_context_create() 1329 if (!ctx->program_cache || !ctx->render_pass_cache) in zink_context_create()
|
| /external/mesa3d/docs/relnotes/ |
| D | 20.0.0.rst | 786 - i965/program_cache: Lift restriction on shader key size
|