blob: 9f7154c6e6e477af7741473ae522f71089cec22b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <clc/clc.h>
#include "../clcmacro.h"
// Map the llvm intrinsic to an OpenCL function.
#define __CLC_FUNCTION __clc_ceil
#define __CLC_INTRINSIC "llvm.ceil"
#include "math/unary_intrin.inc"
#undef __CLC_FUNCTION
#define __CLC_FUNCTION ceil
#include "unary_builtin.inc"
|