Home
last modified time | relevance | path

Searched refs:program_builder (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
H A Dprogram_cache.cc183 data::ProgramBuilder program_builder(builder); in GetSerializedCache() local
184 program_builder.add_fingerprint(program.first.fingerprint); in GetSerializedCache()
185 program_builder.add_binary(binary_offset); in GetSerializedCache()
186 serialized_programs.push_back(program_builder.Finish()); in GetSerializedCache()
H A Dinference_context.cc953 data::BinaryProgramBuilder program_builder(*builder); in Encode() local
954 program_builder.add_fingerprint(fingerprint); in Encode()
955 program_builder.add_binary(binary_fb); in Encode()
956 binary_programs_fb.push_back(program_builder.Finish()); in Encode()
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/gl/
H A Dserialization.cc373 data::ProgramBuilder program_builder(builder_); in AddProgram() local
374 program_builder.add_number_workgroups(fb_workgroups); in AddProgram()
375 program_builder.add_workgroup_size(fb_workgroup_size); in AddProgram()
376 program_builder.add_parameters(fb_params); in AddProgram()
377 program_builder.add_objects(fb_objects); in AddProgram()
378 program_builder.add_shader_index(shader_index); in AddProgram()
379 programs_.push_back(program_builder.Finish()); in AddProgram()
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/metal/
H A Dinference_context.cc92 data::MetalProgramBuilder program_builder(*builder); in EncodeProgram() local
93 program_builder.add_define_names(names_fb_vec); in EncodeProgram()
94 program_builder.add_define_expressions(expressions_fb_vec); in EncodeProgram()
95 program_builder.add_code(code_fb); in EncodeProgram()
96 return program_builder.Finish(); in EncodeProgram()
/aosp_15_r20/external/mesa3d/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_program.cc32 struct program_builder { struct
537 const struct program_builder *b) in emit_vs_system_values()
585 emit_vpc(struct fd_ringbuffer *ring, const struct program_builder *b) in emit_vpc()
914 emit_fs_inputs(struct fd_ringbuffer *ring, const struct program_builder *b) in emit_fs_inputs()
1106 emit_fs_outputs(struct fd_ringbuffer *ring, const struct program_builder *b) in emit_fs_outputs()
1151 setup_stateobj(struct fd_ringbuffer *ring, const struct program_builder *b) in setup_stateobj()
1408 struct program_builder b = { in fd6_program_create()