8000 move fbcode ATEN_CORE_H to shared build structure by dagitses · Pull Request #77863 · pytorch/pytorch · GitHub
[go: up one dir, main page]

Skip to content

move fbcode ATEN_CORE_H to shared build structure #77863

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 33 commits into from
Closed
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7856cdf
move fbcode ATEN_CORE_H to shared build structure
May 19, 2022
5c5023c
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 19, 2022
1681e73
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 20, 2022
1b65be0
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 20, 2022
7e6d791
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 20, 2022
b9679cf
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 20, 2022
bf0d2a4
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
6638b15
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
2b4627c
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
c56daf4
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
1471071
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
e0cfed8
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
eadbcba
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
4f6120d
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
576b3fe
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
e08963c
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
2bcc3d1
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
5b5a839
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 23, 2022
f19ea4f
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 24, 2022
8362142
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 24, 2022
4767e25
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 24, 2022
ea71dd5
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 31, 2022
6fc6e52
Update on "move fbcode ATEN_CORE_H to shared build structure"
May 31, 2022
e58401d
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jun 2, 2022
d9bdfef
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jun 17, 2022
e862d9c
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jun 20, 2022
b83d3cb
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jun 20, 2022
d8703b7
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jun 22, 2022
0dc7d07
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jun 23, 2022
e56d5e3
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jun 23, 2022
37cae7b
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jul 6, 2022
a48409e
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jul 8, 2022
b5bdf47
Update on "move fbcode ATEN_CORE_H to shared build structure"
Jul 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions build.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,27 @@ def define_targets(rules):
tools = ["//tools/setup_helpers:gen_version_header"],
)

def aten_core_hdrs(rules):
"""The source files that are part of the aten_core_headers target.

Note that this is a function because globs are not permitted at
global scope in Starlark.
"""
return rules.glob([
"aten/src/ATen/core/*.h",
"aten/src/ATen/ops/*.h",
"aten/src/ATen/core/boxing/*.h",
"aten/src/ATen/core/boxing/impl/*.h",
"aten/src/ATen/core/dispatch/*.h",
"aten/src/ATen/core/op_registration/*.h",
]) + [
"aten/src/ATen/CPUGeneratorImpl.h",
"aten/src/ATen/NumericUtils.h",
"aten/src/ATen/detail/CUDAHooksInterface.h",
"aten/src/ATen/detail/ORTHooksInterface.h",
"aten/src/ATen/detail/HIPHooksInterface.h",
]

#
# ATen generated code
# You need to keep this is sync with the files written out
Expand Down
0