diff --git a/libclc/generic/include/clc/clc.h b/libclc/generic/include/clc/clc.h index edb67fd9acd9..decc899d2d22 100644 --- a/libclc/generic/include/clc/clc.h +++ b/libclc/generic/include/clc/clc.h @@ -78,6 +78,7 @@ #include #include #include +#include #include #include #include diff --git a/libclc/generic/include/clc/math/half_powr.h b/libclc/generic/include/clc/math/half_powr.h new file mode 100644 index 000000000000..c4e524296462 --- /dev/null +++ b/libclc/generic/include/clc/math/half_powr.h @@ -0,0 +1,7 @@ +#define __CLC_BODY +#define __CLC_FUNCTION half_powr + +#include + +#undef __CLC_BODY +#undef __CLC_FUNCTION diff --git a/libclc/generic/lib/SOURCES b/libclc/generic/lib/SOURCES index 310928667436..13fe4fa98dba 100644 --- a/libclc/generic/lib/SOURCES +++ b/libclc/generic/lib/SOURCES @@ -112,6 +112,7 @@ math/half_exp2.cl math/half_log.cl math/half_log10.cl math/half_log2.cl +math/half_powr.cl math/half_recip.cl math/half_rsqrt.cl math/half_sin.cl diff --git a/libclc/generic/lib/math/half_powr.cl b/libclc/generic/lib/math/half_powr.cl new file mode 100644 index 000000000000..53174d4bd585 --- /dev/null +++ b/libclc/generic/lib/math/half_powr.cl @@ -0,0 +1,6 @@ +#include + +#define __CLC_FUNC powr +#define __CLC_BODY +#define __FLOAT_ONLY +#include