• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Description:
2# The cuDNN Frontend API is a C++ header-only library that demonstrates how
3# to use the cuDNN C backend API.
4
5package(
6    default_visibility = ["//visibility:public"],
7)
8
9licenses(["notice"])  # MIT
10
11exports_files(["LICENSE.txt"])
12
13filegroup(
14    name = "cudnn_frontend_header_files",
15    srcs = glob([
16        "include/**",
17    ]),
18)
19
20cc_library(
21    name = "cudnn_frontend",
22    hdrs = [":cudnn_frontend_header_files"],
23    include_prefix = "third_party/cudnn_frontend",
24)
25