mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
[3] move aten targets to shared buck file (#79966)
Summary: move aten related targets to the shared buck file Test Plan: Github CI, sandcastle Differential Revision: D37323401 Pull Request resolved: https://github.com/pytorch/pytorch/pull/79966 Approved by: https://github.com/iseeyuan
This commit is contained in:
committed by
PyTorch MergeBot
parent
0ee31ce8c8
commit
736bbe1ec7
14
third_party/BUCK.oss
vendored
14
third_party/BUCK.oss
vendored
@ -8,6 +8,20 @@ define_xnnpack()
|
||||
|
||||
define_kineto()
|
||||
|
||||
# a placeholder for libraries that are not implemented in OSS
|
||||
cxx_library(
|
||||
name = "no-op",
|
||||
visibility = ['PUBLIC'],
|
||||
)
|
||||
|
||||
cxx_library(
|
||||
name = "rt",
|
||||
exported_platform_linker_flags = [
|
||||
("^linux-.*$", ["-lrt"]),
|
||||
],
|
||||
visibility = ['PUBLIC'],
|
||||
)
|
||||
|
||||
cxx_library(
|
||||
name = "fmt",
|
||||
srcs = ['fmt/src/format.cc'],
|
||||
|
Reference in New Issue
Block a user