Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libclc/libspirv/lib/generic/SOURCES
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ atomic/atomic_load.cl
atomic/atomic_store.cl
common/degrees.cl
common/fclamp.cl
common/fmax_common.cl
common/fmin_common.cl
common/mix.cl
common/radians.cl
common/sign.cl
Expand Down Expand Up @@ -84,9 +86,7 @@ math/fdim.cl
math/floor.cl
math/fma.cl
math/fmax.cl
math/fmax_common.cl
math/fmin.cl
math/fmin_common.cl
math/fmod.cl
math/fract.cl
math/frexp.cl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
//
//===----------------------------------------------------------------------===//

#include <clc/math/clc_fmax.h>
#include <libspirv/spirv.h>

#define __CLC_BODY <fmax_common.inc>
#define __CLC_FUNCTION __spirv_ocl_fmax_common
#define __CLC_IMPL_FUNCTION(x) __clc_fmax
#define __CLC_BODY <clc/shared/binary_def.inc>
#include <clc/math/gentype.inc>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
//
//===----------------------------------------------------------------------===//

#include <clc/math/clc_fmin.h>
#include <libspirv/spirv.h>

#define __CLC_BODY <fmin_common.inc>
#define __CLC_FUNCTION __spirv_ocl_fmin_common
#define __CLC_IMPL_FUNCTION(x) __clc_fmin
#define __CLC_BODY <clc/shared/binary_def.inc>
#include <clc/math/gentype.inc>
12 changes: 0 additions & 12 deletions libclc/libspirv/lib/generic/math/fmax_common.inc

This file was deleted.

12 changes: 0 additions & 12 deletions libclc/libspirv/lib/generic/math/fmin_common.inc

This file was deleted.

Loading