mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
e353a2748f
This reuse the same string as cupti, which is human readable, but was more intended to be read by machine. Should also works for TF but not tested.
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",
|
|
)
|