mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/127051 Approved by: https://github.com/cpuhrsch, https://github.com/malfet
18 lines
425 B
Text
18 lines
425 B
Text
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"],
|
|
)
|