diff options
author | Erik Faye-Lund <[email protected]> | 2020-03-13 11:57:52 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-26 10:14:22 +0000 |
commit | 25cb87bcdd558747f3dd06be033c2a93ab634d53 (patch) | |
tree | 715842e99437fbc3a817c1386783ba8f44cbacb3 | |
parent | c98e745e787f5df9ad45db6472a37d51a03b5fb8 (diff) |
vtn/opencl: add native exp/log-support
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Karol Herbst <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4318>
-rw-r--r-- | src/compiler/spirv/vtn_opencl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compiler/spirv/vtn_opencl.c b/src/compiler/spirv/vtn_opencl.c index 003a9914110..5eeaed4c3b4 100644 --- a/src/compiler/spirv/vtn_opencl.c +++ b/src/compiler/spirv/vtn_opencl.c @@ -193,6 +193,10 @@ handle_special(struct vtn_builder *b, enum OpenCLstd_Entrypoints opcode, case OpenCLstd_S_Upsample: case OpenCLstd_U_Upsample: return nir_upsample(nb, srcs[0], srcs[1]); + case OpenCLstd_Native_exp: + return nir_fexp(nb, srcs[0]); + case OpenCLstd_Native_log: + return nir_flog(nb, srcs[0]); default: vtn_fail("No NIR equivalent"); return NULL; @@ -391,6 +395,8 @@ vtn_handle_opencl_instruction(struct vtn_builder *b, SpvOp ext_opcode, case OpenCLstd_S_Upsample: case OpenCLstd_U_Upsample: case OpenCLstd_Clz: + case OpenCLstd_Native_exp: + case OpenCLstd_Native_log: handle_instr(b, cl_opcode, w, count, handle_special); return true; case OpenCLstd_Vloadn: |