HomeSort by: relevance | last modified time | path
    Searched defs:exec_size (Results 1 - 25 of 31) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/kernel/
vc4_gem.c 43 uint32_t exec_size = uniforms_offset + args->uniforms_size; local
44 uint32_t temp_size = exec_size + (sizeof(struct vc4_shader_state) *
48 exec_size < uniforms_offset ||
51 temp_size < exec_size) {
73 exec->shader_state = temp + exec_size;
100 exec->exec_bo = drm_gem_cma_create(dev, exec_size);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/kernel/
vc4_gem.c 43 uint32_t exec_size = uniforms_offset + args->uniforms_size; local
44 uint32_t temp_size = exec_size + (sizeof(struct vc4_shader_state) *
48 exec_size < uniforms_offset ||
51 temp_size < exec_size) {
73 exec->shader_state = temp + exec_size;
100 exec->exec_bo = drm_gem_cma_create(dev, exec_size);
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_interface.cpp 190 unsigned exec_size = aco::emit_program(program.get(), code); local
207 aco::print_asm(program.get(), code, exec_size / 4u, memf);
248 legacy_binary->exec_size = exec_size;
292 unsigned exec_size = aco::emit_program(program.get(), code); local
295 aco::print_asm(program.get(), code, exec_size / 4u, stderr);
aco_assembler.cpp 982 unsigned exec_size = code.size() * sizeof(uint32_t); local
1000 return exec_size;
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_rtld.h 65 uint64_t exec_size; member in struct:ac_rtld_binary
ac_rtld.c 272 uint64_t exec_size = 0; local
371 exec_size += shdr->sh_size;
441 binary->exec_size = exec_size;
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_ir.h 143 uint8_t exec_size; member in struct:backend_instruction::backend_instruction
149 * given by [group, group + exec_size) will be used to mask GRF writes and
brw_fs_bank_conflicts.cpp 660 const unsigned exec_size = inst->dst.component_size(inst->exec_size); local
661 const unsigned cycle_scale = block_scale * DIV_ROUND_UP(exec_size,
test_eu_validate.cpp 195 enum brw_execution_size exec_size; member in struct:__anon2414
212 brw_inst_set_exec_size(&devinfo, last_inst, test_case[i].exec_size);
216 if (test_case[i].exec_size == BRW_EXECUTE_1) {
1494 unsigned exec_size; member in struct:__anon2424
1501 #define INST(exec_size, dst_type, src0_type, src1_type, \
1504 BRW_EXECUTE_##exec_size, \
1535 brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
1618 unsigned exec_size; member in struct:__anon2426
1628 #define INST(exec_size, opcode, dst_type, src0_type, src1_type, \
1632 BRW_EXECUTE_##exec_size, \
1765 unsigned exec_size; member in struct:__anon2428
1903 unsigned exec_size; member in struct:__anon2430
2064 unsigned exec_size; member in struct:__anon2433
2141 unsigned exec_size; member in struct:__anon2435
2329 unsigned exec_size; member in struct:__anon2436
2461 unsigned exec_size; member in struct:__anon2437
2621 unsigned exec_size; member in struct:__anon2438
2695 unsigned exec_size; member in struct:__anon2439
    [all...]
brw_disasm.c 190 static const char *const exec_size[8] = { variable
1754 int exec_size = 1 << brw_inst_exec_size(devinfo, inst); local
1758 if (exec_size < 8 || nib_ctl) {
1760 } else if (exec_size == 8) {
1775 } else if (exec_size == 16) {
1943 err |= control(file, "execution size", exec_size,
brw_eu.h 52 unsigned exec_size:3; member in struct:brw_insn_state
631 unsigned exec_size, /**< 0 for SIMD4x2 */
635 assert(exec_size <= 8 || exec_size == 16);
639 if (exec_size > 0) {
650 SET_BITS(0 < exec_size && exec_size <= 8, 4, 4) |
658 unsigned exec_size,
662 assert(exec_size <= 8 || exec_size == 16)
    [all...]
brw_eu_emit.c 184 /* Generators should set a default exec_size of either 8 (SIMD4x2 or SIMD8)
192 * of 4 that need two SIMD8 registers and an exec_size of 8 or 16. In
617 brw_inst_set_exec_size(devinfo, insn, state->exec_size);
2391 const unsigned exec_size = 1 << brw_get_default_exec_size(p); local
2438 brw_message_desc(devinfo, 1, DIV_ROUND_UP(exec_size, 8), true) |
2440 BRW_DATAPORT_OWORD_BLOCK_DWORDS(exec_size),
3118 unsigned exec_size /**< 0 for SIMD4x2 */)
3120 if (exec_size == 0)
3122 else if (exec_size <= 8)
3145 const unsigned exec_size = align1 ? 1 << brw_get_default_exec_size(p) local
3178 const unsigned exec_size = align1 ? 1 << brw_get_default_exec_size(p) : 0; local
3203 const unsigned exec_size = align1 ? 1 << brw_get_default_exec_size(p) : local
3318 const uint16_t exec_size = brw_get_default_exec_size(p); local
3343 const unsigned exec_size = 1 << brw_get_default_exec_size(p); local
    [all...]
brw_eu_validate.c 699 unsigned exec_size = 1 << brw_inst_exec_size(devinfo, inst); local
722 if (exec_size == 1)
750 if (is_packed(exec_size * dst_stride, exec_size, dst_stride)) {
931 unsigned exec_size = 1 << brw_inst_exec_size(devinfo, inst); local
1013 ERROR_IF(exec_size < width, "ExecSize must be greater than or equal "
1019 if (exec_size == width && hstride != 0) {
1035 if (exec_size == 1 && width == 1) {
1056 for (int y = 0; y < exec_size / width; y++) {
1097 unsigned exec_size = 1 << brw_inst_exec_size(devinfo, inst) local
1371 unsigned exec_size = 1 << brw_inst_exec_size(devinfo, inst); local
    [all...]
brw_fs_generator.cpp 85 const unsigned phys_width = compressed ? inst->exec_size / 2 :
86 inst->exec_size;
483 assert(inst->exec_size <= 8 || devinfo->ver >= 8);
492 inst->exec_size == dispatch_width;
620 MIN2(16, inst->exec_size);
623 for (unsigned group = 0; group < inst->exec_size; group += lower_width) {
761 assert(inst->exec_size >= 4);
770 assert(inst->exec_size == 8);
798 assert(inst->exec_size == 4);
804 brw_set_default_exec_size(p, cvt(inst->exec_size / 4) - 1)
2041 unsigned exec_size = inst->exec_size; local
    [all...]
brw_vec4_generator.cpp 1560 assert(inst->group % inst->exec_size == 0);
1565 * double the exec_size.
1574 unsigned exec_size = inst->exec_size; local
1576 exec_size *= 2;
1578 brw_set_default_exec_size(p, cvt(exec_size) - 1);
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_fs_bank_conflicts.cpp 651 const unsigned exec_size = inst->dst.component_size(inst->exec_size); local
652 const unsigned cycle_scale = block_scale * DIV_ROUND_UP(exec_size,
942 return DIV_ROUND_UP(inst->dst.component_size(inst->exec_size), REG_SIZE);
brw_shader.h 146 uint8_t exec_size; member in struct:backend_instruction::backend_instruction
152 * given by [group, group + exec_size) will be used to mask GRF writes and
test_eu_validate.cpp 1088 unsigned exec_size; member in struct:__anon4760
1095 #define INST(exec_size, dst_type, src0_type, src1_type, \
1098 BRW_EXECUTE_##exec_size, \
1129 brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
1212 unsigned exec_size; member in struct:__anon4762
1222 #define INST(exec_size, opcode, dst_type, src0_type, src1_type, \
1226 BRW_EXECUTE_##exec_size, \
1279 brw_inst_set_exec_size(&devinfo, last_inst, inst[i].exec_size);
1359 unsigned exec_size; member in struct:__anon4764
1368 #define INST(exec_size, dst_type, src0_type, src1_type, dst_stride, dst_subnr,
1497 unsigned exec_size; member in struct:__anon4766
1658 unsigned exec_size; member in struct:__anon4769
1735 unsigned exec_size; member in struct:__anon4771
1911 unsigned exec_size; member in struct:__anon4772
2035 unsigned exec_size; member in struct:__anon4773
2187 unsigned exec_size; member in struct:__anon4774
2261 unsigned exec_size; member in struct:__anon4775
    [all...]
brw_eu.h 51 unsigned exec_size:3; member in struct:brw_insn_state
563 unsigned exec_size, /**< 0 for SIMD4x2 */
567 assert(exec_size <= 8 || exec_size == 16);
571 if (exec_size > 0) {
582 SET_BITS(0 < exec_size && exec_size <= 8, 4, 4) |
590 unsigned exec_size,
594 assert(exec_size <= 8 || exec_size == 16)
    [all...]
brw_vec4_generator.cpp 1524 assert(inst->group % inst->exec_size == 0);
1529 * double the exec_size.
1538 unsigned exec_size = inst->exec_size; local
1540 exec_size *= 2;
1542 brw_set_default_exec_size(p, cvt(exec_size) - 1);
brw_disasm.c 187 static const char *const exec_size[8] = { variable
1533 int exec_size = 1 << brw_inst_exec_size(devinfo, inst); local
1537 if (exec_size < 8 || nib_ctl) {
1539 } else if (exec_size == 8) {
1554 } else if (exec_size == 16) {
1634 err |= control(file, "execution size", exec_size,
  /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/
vn_instance.c 377 const size_t exec_size = vn_sizeof_vkExecuteCommandStreamsMESA( local
380 if (exec_size > sizeof(submit->indirect.data)) {
381 exec_data = malloc(exec_size);
391 VN_CS_ENCODER_INITIALIZER(&submit->indirect.buffer, exec_size);
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/brw/
brw_disasm.c 182 static const char *exec_size[8] = { variable
874 control(file, "execution size", exec_size, inst->header.execution_size, NULL);
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/brw/
brw_disasm.c 182 static const char *exec_size[8] = { variable
874 control(file, "execution size", exec_size, inst->header.execution_size, NULL);
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/
helpers.cpp 229 unsigned exec_size = emit_program(program.get(), binary); local
234 print_asm(program.get(), binary, exec_size / 4u, output);

Completed in 59 milliseconds

1 2