mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
21 lines
418 B
Plaintext
21 lines
418 B
Plaintext
|
#Description : NVIDIA Tools Extension (NVTX) library for adding profiling annotations to applications.
|
||
|
|
||
|
package(
|
||
|
default_visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
licenses(["restricted"]) # NVIDIA proprietary license
|
||
|
|
||
|
filegroup(
|
||
|
name = "nvtx_header_files",
|
||
|
srcs = glob([
|
||
|
"nvtx3/**",
|
||
|
]),
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "nvtx",
|
||
|
hdrs = [":nvtx_header_files"],
|
||
|
include_prefix = "third_party",
|
||
|
)
|