Mesa (master): ac/nir: remove emission of nir_op_fpow

Samuel Pitoiset hakzsam at kemper.freedesktop.org
Thu Feb 22 19:45:02 UTC 2018


Module: Mesa
Branch: master
Commit: d6b75392067712908bdc372f1007e085439bf9f5
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d6b75392067712908bdc372f1007e085439bf9f5

Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Mon Feb  5 15:51:37 2018 +0100

ac/nir: remove emission of nir_op_fpow

fpow is now lowered at NIR level.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>

---

 src/amd/common/ac_nir_to_llvm.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c
index 99a3471305..cccc687157 100644
--- a/src/amd/common/ac_nir_to_llvm.c
+++ b/src/amd/common/ac_nir_to_llvm.c
@@ -1883,10 +1883,6 @@ static void visit_alu(struct ac_nir_context *ctx, const nir_alu_instr *instr)
 		result = ac_build_fdiv(&ctx->ac, instr->dest.dest.ssa.bit_size == 32 ? ctx->ac.f32_1 : ctx->ac.f64_1,
 				       result);
 		break;
-	case nir_op_fpow:
-		result = emit_intrin_2f_param(&ctx->ac, "llvm.pow",
-		                              ac_to_float_type(&ctx->ac, def_type), src[0], src[1]);
-		break;
 	case nir_op_fmax:
 		result = emit_intrin_2f_param(&ctx->ac, "llvm.maxnum",
 		                              ac_to_float_type(&ctx->ac, def_type), src[0], src[1]);




More information about the mesa-commit mailing list