mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/35220 Reviewed By: seemethere Differential Revision: D20783179 Pulled By: malfet fbshipit-source-id: b160908a3e107790fa06057a77de9d6d23493bbc
17 lines
277 B
Plaintext
17 lines
277 B
Plaintext
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "foxi",
|
|
srcs = [
|
|
"foxi/onnxifi_loader.c",
|
|
],
|
|
hdrs = glob([
|
|
"foxi/*.h",
|
|
]),
|
|
includes = [
|
|
".",
|
|
],
|
|
linkstatic = 1,
|
|
visibility = ["//visibility:public"],
|
|
)
|