mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
rename BUILD.buck to BUCK.oss to better reflect that it's the OSS version of BUCK build, not the one shared with Bazel Pull Request resolved: https://github.com/pytorch/pytorch/pull/78792 Approved by: https://github.com/kit1980
13 lines
212 B
Plaintext
13 lines
212 B
Plaintext
python_library(
|
|
name = "jit",
|
|
srcs = glob([
|
|
"*.py",
|
|
"templates/*",
|
|
]),
|
|
base_module = "tools.jit",
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
"//torchgen:torchgen",
|
|
],
|
|
)
|