You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
288 B
15 lines
288 B
7 months ago
|
# Description:
|
||
|
# DLPack is a protocol for sharing arrays between deep learning frameworks.
|
||
|
|
||
|
licenses(["notice"]) # Apache 2
|
||
|
|
||
|
exports_files(["LICENSE"])
|
||
|
|
||
|
cc_library(
|
||
|
name = "dlpack",
|
||
|
hdrs = [
|
||
|
"include/dlpack/dlpack.h",
|
||
|
],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|