summaryrefslogtreecommitdiff
path: root/generic/lib/math/fmin.cl
blob: cac188e94c3f6b6a6dc54a13a8329e0caf12c97a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <clc/clc.h>

#ifdef cl_khr_fp64
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
#endif

#define FUNCTION __clc_fmin
#define FUNCTION_IMPL(x, y) ((y) < (x) ? (y) : (x))

#define BODY <binary_impl.inc>
#include <clc/math/gentype.inc>