sglang_v0.5.2/pytorch_2.8.0/torchgen/BUCK.oss

24 lines
395 B
Plaintext

python_library(
name = "torchgen",
srcs = glob(
["**/*.py"],
),
base_module = "torchgen",
visibility = ["PUBLIC"],
deps = [
"//third_party:pyyaml",
"//third_party:typing-extensions",
],
)
python_binary(
name = "gen",
main_module = "torchgen.gen",
visibility = [
"PUBLIC",
],
deps = [
":torchgen",
],
)