diff options
Diffstat (limited to 'src/intel/compiler')
-rw-r--r-- | src/intel/compiler/brw_vec4_generator.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/intel/compiler/brw_vec4_generator.cpp b/src/intel/compiler/brw_vec4_generator.cpp index 5be4ef7fd4b..09081588400 100644 --- a/src/intel/compiler/brw_vec4_generator.cpp +++ b/src/intel/compiler/brw_vec4_generator.cpp @@ -1524,11 +1524,7 @@ generate_code(struct brw_codegen *p, brw_set_default_acc_write_control(p, inst->writes_accumulator); assert(inst->group % inst->exec_size == 0); - assert(inst->group % 8 == 0 || - inst->dst.type == BRW_REGISTER_TYPE_DF || - inst->src[0].type == BRW_REGISTER_TYPE_DF || - inst->src[1].type == BRW_REGISTER_TYPE_DF || - inst->src[2].type == BRW_REGISTER_TYPE_DF); + assert(inst->group % 4 == 0); unsigned exec_size = inst->exec_size; if (devinfo->gen == 7 && |