diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-05-13 03:55:07 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-05-13 03:55:07 +0000 |
commit | d538fdc217fd575790670953c9e0247125bf6740 (patch) | |
tree | 35d975391bac8499cee5176c71220764c32a75bd /libclc/generic/include | |
parent | 0cabcf211a929a4003f75cfa3348713062232400 (diff) | |
download | bcm5719-llvm-d538fdc217fd575790670953c9e0247125bf6740.tar.gz bcm5719-llvm-d538fdc217fd575790670953c9e0247125bf6740.zip |
Implement exp2 using OpenCL C rather than using an intrinsic
Not all targets support the intrinsic, so it's better to have a
generic implementation which does not use it.
This exp2 implementation was ported from the AMD builtin library
and has been tested with piglit, OpenCV, and the ocl conformance tests.
llvm-svn: 237228
Diffstat (limited to 'libclc/generic/include')
-rw-r--r-- | libclc/generic/include/clc/math/exp2.h | 28 | ||||
-rw-r--r-- | libclc/generic/include/clc/math/exp2.inc | 23 |
2 files changed, 46 insertions, 5 deletions
diff --git a/libclc/generic/include/clc/math/exp2.h b/libclc/generic/include/clc/math/exp2.h index ec0dad268a7..14167e87f7d 100644 --- a/libclc/generic/include/clc/math/exp2.h +++ b/libclc/generic/include/clc/math/exp2.h @@ -1,6 +1,24 @@ -#undef exp2 -#define exp2 __clc_exp2 +/* + * Copyright (c) 2014, 2015 Advanced Micro Devices, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ -#define __CLC_FUNCTION __clc_exp2 -#define __CLC_INTRINSIC "llvm.exp2" -#include <clc/math/unary_intrin.inc> +#define __CLC_BODY <clc/math/exp2.inc> +#include <clc/math/gentype.inc> diff --git a/libclc/generic/include/clc/math/exp2.inc b/libclc/generic/include/clc/math/exp2.inc new file mode 100644 index 00000000000..3ecaae621b3 --- /dev/null +++ b/libclc/generic/include/clc/math/exp2.inc @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2014, 2015 Advanced Micro Devices, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +_CLC_OVERLOAD _CLC_DECL __CLC_GENTYPE exp2(__CLC_GENTYPE x); |