blob: d6a6a26af6ca7de6a0928a86ac90868e3c688d36 [file] [log] [blame]
# Description:
# The cuDNN Frontend API is a C++ header-only library that demonstrates how
# to use the cuDNN C backend API.
package(
default_visibility = ["//visibility:public"],
)
licenses(["notice"]) # MIT
exports_files(["LICENSE.txt"])
filegroup(
name = "cudnn_frontend_header_files",
srcs = glob([
"include/**",
]),
)
cc_library(
name = "cudnn_frontend",
hdrs = [":cudnn_frontend_header_files"],
include_prefix = "third_party/cudnn_frontend",
)