mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/36011 Differential Revision: D20873430 Pulled By: malfet fbshipit-source-id: 8ffffd10ca0ff8bdab578a70a9b2b777aed985d0
18 lines
329 B
Plaintext
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"],
|
|
)
|