You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
257 B
11 lines
257 B
4 months ago
|
#include <clc/clc.h>
|
||
|
|
||
|
// Map the llvm intrinsic to an OpenCL function.
|
||
|
#define __CLC_FUNCTION __clc_trunc
|
||
|
#define __CLC_INTRINSIC "llvm.trunc"
|
||
|
#include "math/unary_intrin.inc"
|
||
|
|
||
|
#undef __CLC_FUNCTION
|
||
|
#define __CLC_FUNCTION trunc
|
||
|
#include "unary_builtin.inc"
|