Files
pytorch/third_party/foxi.BUILD
George Gensure 585f153d00 Bazel build of pytorch (#35220)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/35220

Reviewed By: seemethere

Differential Revision: D20783179

Pulled By: malfet

fbshipit-source-id: b160908a3e107790fa06057a77de9d6d23493bbc
2020-04-03 17:13:58 -07:00

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"],
)