From: Boris Brezillon Date: Tue, 17 Mar 2020 13:38:44 +0000 (+0000) Subject: vtn/opencl: add rint-support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=efdce97e4bb0a4b2e5d81d2f9276f3eedd9561b6;p=mesa.git vtn/opencl: add rint-support Signed-off-by: Boris Brezillon Reviewed-by: Karol Herbst Tested-by: Marge Bot Part-of: --- diff --git a/src/compiler/spirv/vtn_opencl.c b/src/compiler/spirv/vtn_opencl.c index 0dc95a19f6b..da191f2b80a 100644 --- a/src/compiler/spirv/vtn_opencl.c +++ b/src/compiler/spirv/vtn_opencl.c @@ -100,6 +100,7 @@ nir_alu_op_for_opencl_opcode(struct vtn_builder *b, case OpenCLstd_SSub_sat: return nir_op_isub_sat; case OpenCLstd_USub_sat: return nir_op_usub_sat; case OpenCLstd_Trunc: return nir_op_ftrunc; + case OpenCLstd_Rint: return nir_op_fround_even; /* uhm... */ case OpenCLstd_UAbs: return nir_op_mov; default: @@ -366,6 +367,7 @@ vtn_handle_opencl_instruction(struct vtn_builder *b, SpvOp ext_opcode, case OpenCLstd_SSub_sat: case OpenCLstd_USub_sat: case OpenCLstd_Trunc: + case OpenCLstd_Rint: handle_instr(b, cl_opcode, w, count, handle_alu); return true; case OpenCLstd_SAbs_diff: