mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 00:19:58 +01:00
16 lines
316 B
Plaintext
16 lines
316 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"])
|
|
|
|
cc_library(
|
|
name = "cub",
|
|
hdrs = glob(["cub/**"]),
|
|
deps = ["@local_config_cuda//cuda:cuda_headers"],
|
|
)
|