aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/sycl/sycl/build_defs.bzl.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/sycl/sycl/build_defs.bzl.tpl')
-rwxr-xr-xthird_party/sycl/sycl/build_defs.bzl.tpl17
1 files changed, 16 insertions, 1 deletions
diff --git a/third_party/sycl/sycl/build_defs.bzl.tpl b/third_party/sycl/sycl/build_defs.bzl.tpl
index 09bef0a661..33386f8957 100755
--- a/third_party/sycl/sycl/build_defs.bzl.tpl
+++ b/third_party/sycl/sycl/build_defs.bzl.tpl
@@ -5,9 +5,24 @@ def if_sycl(if_true, if_false = []):
Returns a select statement which evaluates to if_true if we're building
with SYCL enabled. Otherwise, the select statement evaluates to if_false.
+ If we are building with triSYCL instead of ComputeCPP, a list with
+ the first element of if_true is returned.
+ """
+ return select({
+ "@local_config_sycl//sycl:using_sycl_ccpp": if_true,
+ "@local_config_sycl//sycl:using_sycl_trisycl": if_true[0:1],
+ "//conditions:default": if_false
+ })
+
+def if_ccpp(if_true, if_false = []):
+ """Shorthand for select()'ing if we are building with ComputeCPP.
+ Returns a select statement which evaluates to if_true if we're building
+ with ComputeCPP enabled. Otherwise, the select statement evaluates
+ to if_false.
"""
return select({
- "@local_config_sycl//sycl:using_sycl": if_true,
+ "@local_config_sycl//sycl:using_sycl_ccpp": if_true,
+ "@local_config_sycl//sycl:using_sycl_trisycl": if_false,
"//conditions:default": if_false
})