mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
Revert "i965/fs: Allow SIMD16 borrow/carry/64-bit multiply on Gen > 7."
This reverts commit 9f5e5bd34d.
I have no idea what made me believe these didn't apply to Gen > 7. They
do, and without them we generate bad code that causes failures on Gen 8.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
b94a4e8498
commit
b3e29a2022
1 changed files with 3 additions and 3 deletions
|
|
@ -892,7 +892,7 @@ fs_visitor::visit(ir_expression *ir)
|
|||
}
|
||||
break;
|
||||
case ir_binop_imul_high: {
|
||||
if (devinfo->gen == 7)
|
||||
if (devinfo->gen >= 7)
|
||||
no16("SIMD16 explicit accumulator operands unsupported\n");
|
||||
|
||||
struct brw_reg acc = retype(brw_acc_reg(dispatch_width),
|
||||
|
|
@ -929,7 +929,7 @@ fs_visitor::visit(ir_expression *ir)
|
|||
emit_math(SHADER_OPCODE_INT_QUOTIENT, this->result, op[0], op[1]);
|
||||
break;
|
||||
case ir_binop_carry: {
|
||||
if (devinfo->gen == 7)
|
||||
if (devinfo->gen >= 7)
|
||||
no16("SIMD16 explicit accumulator operands unsupported\n");
|
||||
|
||||
struct brw_reg acc = retype(brw_acc_reg(dispatch_width),
|
||||
|
|
@ -940,7 +940,7 @@ fs_visitor::visit(ir_expression *ir)
|
|||
break;
|
||||
}
|
||||
case ir_binop_borrow: {
|
||||
if (devinfo->gen == 7)
|
||||
if (devinfo->gen >= 7)
|
||||
no16("SIMD16 explicit accumulator operands unsupported\n");
|
||||
|
||||
struct brw_reg acc = retype(brw_acc_reg(dispatch_width),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue