STT-tensorflow/third_party/cub.BUILD
Christian Sigg c6769e20bf Use CUB from the CUDA Toolkit starting with version 11.0.
PiperOrigin-RevId: 327096097
Change-Id: I444ec3ac3348f76728c931a4bb4aa1b7cbe1b673
2020-08-17 14:24:28 -07:00

27 lines
516 B
Plaintext

# Description: CUB library which is a set of primitives for GPU programming.
package(
default_visibility = ["//visibility:public"],
)
licenses(["notice"]) # BSD
exports_files(["LICENSE.TXT"])
load("@local_config_cuda//cuda:build_defs.bzl", "cuda_default_copts", "if_cuda")
filegroup(
name = "cub_header_files",
srcs = glob([
"cub/**",
]),
)
cc_library(
name = "cub",
hdrs = if_cuda([":cub_header_files"]),
deps = [
"@local_config_cuda//cuda:cuda_headers",
],
)