Skip to content

Commit 69da5c5

Browse files
committed
libclc: fix clcmaro.h path for rsqrt.cl
1 parent 6c524eb commit 69da5c5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

libclc/generic/libspirv/math/clc_hypot.cl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#include <spirv/spirv.h>
1010

1111
#include <clc/clc.h>
12-
#include <clc/clcmacro.h>
1312
#include <clc/shared/clc_clamp.h>
1413
#include <clc/clcmacro.h>
1514
#include <config.h>

libclc/generic/libspirv/math/rsqrt.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <spirv/spirv.h>
1010

11-
#include "clcmacro.h"
11+
#include <clc/clcmacro.h>
1212

1313
_CLC_OVERLOAD _CLC_DEF float __spirv_ocl_rsqrt(float x) {
1414
return 1.0f / __spirv_ocl_sqrt(x);

0 commit comments

Comments
 (0)