Home
last modified time | relevance | path

Searched refs:program_size (Results 1 – 25 of 43) sorted by relevance

12

/aosp_15_r20/external/executorch/exir/_serialize/
H A D_program.py141 program_size: int
175 program_size=int.from_bytes(data[8:16], byteorder=_HEADER_BYTEORDER),
206 + self.program_size.to_bytes(8, byteorder=_HEADER_BYTEORDER)
462 program_size: int = padded_header_length + len(result.data)
465 _aligned_size(input_size=program_size, alignment=segment_alignment)
472 program_size=program_size, segment_base_offset=segment_base_offset
482 assert len(program_data) == program_size
491 assert eh.program_size == program_size
581 program_size = len(program_data)
588 program_size = eh.program_size
[all …]
/aosp_15_r20/external/executorch/exir/_serialize/test/
H A Dtest_program.py145 self.assertLess(eh.program_size, len(pte_data))
186 self.assertGreaterEqual(eh.segment_base_offset, eh.program_size)
509 self.assertGreaterEqual(eh.segment_base_offset, eh.program_size)
712 self.assertGreaterEqual(eh.segment_base_offset, eh.program_size)
846 program_size=EXAMPLE_PROGRAM_SIZE,
854 program_size=EXAMPLE_PROGRAM_SIZE,
877 self.assertEqual(eh.program_size, EXAMPLE_PROGRAM_SIZE)
890 self.assertEqual(eh.program_size, EXAMPLE_PROGRAM_SIZE)
919 self.assertEqual(eh.program_size, EXAMPLE_PROGRAM_SIZE)
950 self.assertEqual(eh.program_size, EXAMPLE_PROGRAM_SIZE)
[all …]
/aosp_15_r20/external/mesa3d/src/intel/blorp/
H A Dblorp_elk.c67 .kernel_size = wm_prog_data->base.program_size, in blorp_compile_fs_elk()
108 .kernel_size = vs_prog_data->base.base.program_size, in blorp_compile_vs_elk()
174 .kernel_size = cs_prog_data->base.program_size, in blorp_compile_cs_elk()
224 unsigned program_size; in blorp_ensure_sf_program_elk() local
231 &prog_data_tmp, &vue_map, &program_size); in blorp_ensure_sf_program_elk()
235 &key, sizeof(key), program, program_size, in blorp_ensure_sf_program_elk()
H A Dblorp_brw.c59 .kernel_size = wm_prog_data->base.program_size, in blorp_compile_fs_brw()
100 .kernel_size = vs_prog_data->base.base.program_size, in blorp_compile_vs_brw()
166 .kernel_size = cs_prog_data->base.program_size, in blorp_compile_cs_brw()
/aosp_15_r20/external/tensorflow/tensorflow/core/tpu/kernels/
H A Dtpu_compilation_cache_rpc_support.cc62 entry.size = entry.tpu_program_group->program_size(); in DeserializeRpcResponseToCacheEntry()
90 const int64 program_size = tpu_program_group->program_size(); in SerializeCacheEntryToBufferSlices() local
91 if (program_size > INT_MAX) { in SerializeCacheEntryToBufferSlices()
H A Dtpu_program_group_interface.h48 virtual int64_t program_size() const = 0;
H A Dcompiled_subgraph.h157 int64_t size = tpu_program_group->program_size(); in ComputeTotalSize()
H A Dtpu_program_group.h115 int64_t program_size() const override;
/aosp_15_r20/external/executorch/runtime/executor/
H A Dprogram.cpp69 size_t program_size = 0; in load() local
84 program_size = eh->program_size; in load()
93 program_size = result.get(); in load()
104 program_size, in load()
/aosp_15_r20/external/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_disk_cache.c114 blob_write_bytes(&blob, map + shader->offset, shader->prog_data->program_size); in crocus_disk_cache_store()
174 assembly = blob_read_bytes(&blob, prog_data->program_size); in crocus_disk_cache_retrieve()
218 prog_data->program_size, in crocus_disk_cache_retrieve()
H A Dcrocus_program.c1251 prog_data->program_size, in crocus_compile_vs()
1445 prog_data->program_size, in crocus_compile_tcs()
1593 prog_data->program_size, in crocus_compile_tes()
1737 prog_data->program_size, in crocus_compile_gs()
1872 prog_data->program_size, in crocus_compile_fs()
2030 unsigned program_size; in crocus_compile_clip() local
2037 ice->shaders.last_vue_map, &program_size); in crocus_compile_clip()
2049 program_size, in crocus_compile_clip()
2184 unsigned program_size; in crocus_compile_sf() local
2191 ice->shaders.last_vue_map, &program_size); in crocus_compile_sf()
[all …]
/aosp_15_r20/external/mesa3d/src/gallium/drivers/iris/
H A Diris_disk_cache.c138 blob_write_bytes(&blob, shader->map, shader->program_size); in iris_disk_cache_store()
224 assembly = blob_read_bytes(&blob, brw ? brw->program_size : elk->program_size); in iris_disk_cache_retrieve()
H A Diris_program_cache.c165 u_upload_alloc(uploader, 0, shader->program_size, 64, in iris_upload_shader()
168 memcpy(shader->map, assembly, shader->program_size); in iris_upload_shader()
/aosp_15_r20/external/mesa3d/src/imagination/vulkan/
H A Dpvr_clear.c321 uint32_t program_size; in pvr_device_init_clear_attachment_programs() local
350 program_size = pixel_shader_pds_program.code_size + in pvr_device_init_clear_attachment_programs()
352 program_size = PVR_DW_TO_BYTES(program_size); in pvr_device_init_clear_attachment_programs()
355 alloc_size += ALIGN_POT(program_size, pds_prog_alignment); in pvr_device_init_clear_attachment_programs()
/aosp_15_r20/external/mesa3d/src/intel/compiler/
H A Dintel_clc.c165 PROG_DATA_FIELD("%u", base.program_size); in print_cs_prog_data_fields()
271 kernel->prog_data.base.program_size); in print_kernel()
279 kernel->prog_data.base.program_size); in print_kernel()
447 fprintf(stdout, " program_size : %u\n", kernel.prog_data.base.program_size); in output_isa()
/aosp_15_r20/external/executorch/schema/test/
H A Dextended_header_test.cpp93 EXPECT_EQ(header->program_size, kExampleProgramSize); in TEST_F()
180 EXPECT_EQ(header->program_size, kExampleProgramSize); in TEST_F()
/aosp_15_r20/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_translate.c985 unsigned long program_size = (unsigned long)(p->csr - p->program); in i915_fini_compile() local
1031 p->declarations[0] |= program_size + decl_size - 2; in i915_fini_compile()
1037 ifs->program_len = decl_size + program_size; in i915_fini_compile()
1041 program_size * sizeof(uint32_t)); in i915_fini_compile()
1048 (int)program_size, p->nr_tex_insn, p->nr_tex_indirect, in i915_fini_compile()
/aosp_15_r20/external/coreboot/src/drivers/i2c/ww_ring/
H A Dww_ring_programs.h38 uint8_t program_size; member
H A Dww_ring.c263 program_desc->program_size); in ledc_run_program()
/aosp_15_r20/external/coreboot/util/cbfstool/
H A Delfheaders.c1136 Elf64_Xword program_size; in elf_writer_serialize() local
1151 program_size = 0; in elf_writer_serialize()
1162 program_size += buffer_size(&sec->content); in elf_writer_serialize()
1179 if (buffer_create(out, metadata_size + program_size, "elfout")) { in elf_writer_serialize()
1198 buffer_splice(&data, out, metadata_size, program_size); in elf_writer_serialize()
/aosp_15_r20/external/executorch/schema/
H A Dextended_header.h66 uint64_t program_size; member
/aosp_15_r20/hardware/google/apf/v7/
Dapf.h146 u32 program_size; // 11: Size of program (in bytes) member
/aosp_15_r20/external/mesa3d/src/intel/vulkan/grl/
H A DgenX_grl_dispatch.c60 .kernel_size = kernel_data.prog_data.base.program_size, in get_shader_bin()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/xds/xds/type/matcher/v3/
Dregex.proto31 // histogram `re2.program_size`, which records the program size, and the
/aosp_15_r20/external/grpc-grpc-java/xds/third_party/xds/src/main/proto/xds/type/matcher/v3/
H A Dregex.proto31 // histogram `re2.program_size`, which records the program size, and the

12