mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/127051 Approved by: https://github.com/cpuhrsch, https://github.com/malfet
19 lines
425 B
Plaintext
19 lines
425 B
Plaintext
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "mkl",
|
|
srcs = [
|
|
"libmkl_avx2.so",
|
|
"libmkl_core.so",
|
|
"libmkl_def.so",
|
|
"libmkl_intel_lp64.so",
|
|
"libmkl_rt.so",
|
|
"libmkl_sequential.so",
|
|
"libmkl_vml_avx2.so",
|
|
"libmkl_vml_avx512.so",
|
|
"libmkl_vml_def.so",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@mkl_headers"],
|
|
)
|