You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
516 B
27 lines
516 B
# 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",
|
|
],
|
|
)
|