Files
pytorch/third_party/ideep.BUILD
George Gensure 447bcd341d Bazel build of pytorch with gating CI (#36011)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/36011

Differential Revision: D20873430

Pulled By: malfet

fbshipit-source-id: 8ffffd10ca0ff8bdab578a70a9b2b777aed985d0
2020-04-06 22:50:33 -07:00

18 lines
329 B
Plaintext

load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "ideep",
hdrs = glob([
"include/**/*.hpp",
"include/**/*.h",
]),
defines = [
"IDEEP_USE_MKL",
],
includes = [
"include/",
],
visibility = ["//visibility:public"],
deps = ["@mkl_dnn//:mkl-dnn"],
)