Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
cb552b4
port Bazel //tools/autograd to shared build structure
Mar 25, 2022
aa19d35
Update on "port Bazel //tools/autograd to shared build structure"
Mar 25, 2022
075d02a
Update on "port Bazel //tools/autograd to shared build structure"
Mar 25, 2022
93c4dfe
Update on "port Bazel //tools/autograd to shared build structure"
Mar 25, 2022
eb9a32c
Update on "port Bazel //tools/autograd to shared build structure"
Mar 25, 2022
3f37147
Update on "port Bazel //tools/autograd to shared build structure"
Mar 25, 2022
b7ab83d
Update on "port Bazel //tools/autograd to shared build structure"
Mar 28, 2022
77d805f
Update on "port Bazel //tools/autograd to shared build structure"
Mar 28, 2022
3d83624
Update on "port Bazel //tools/autograd to shared build structure"
Mar 28, 2022
c6046d7
Update on "port Bazel //tools/autograd to shared build structure"
Mar 28, 2022
5381526
Update on "port Bazel //tools/autograd to shared build structure"
Mar 28, 2022
acc9edf
Update on "port Bazel //tools/autograd to shared build structure"
Mar 29, 2022
0c6061b
Update on "port Bazel //tools/autograd to shared build structure"
Mar 30, 2022
e0c92a7
Update on "port Bazel //tools/autograd to shared build structure"
Mar 31, 2022
3b6e2b9
Update on "port Bazel //tools/autograd to shared build structure"
Mar 31, 2022
e5d6266
Update on "port Bazel //tools/autograd to shared build structure"
Apr 1, 2022
cdc0703
Update on "port Bazel //tools/autograd to shared build structure"
Apr 1, 2022
7eb7f0c
Update on "port Bazel //tools/autograd to shared build structure"
Apr 4, 2022
f3dbe89
Update on "port Bazel //tools/autograd to shared build structure"
Apr 4, 2022
7c6a0b1
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
ffa24ad
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
9cdaa7d
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
ec07bfc
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
2cc0e78
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
1c6e7f7
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
855980c
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
98f8250
Update on "port Bazel //tools/autograd to shared build structure"
Apr 6, 2022
7bf22f8
Update on "port Bazel //tools/autograd to shared build structure"
Apr 7, 2022
1013333
Update on "port Bazel //tools/autograd to shared build structure"
Apr 7, 2022
32b39a9
Update on "port Bazel //tools/autograd to shared build structure"
Apr 7, 2022
21aa4e6
Update on "port Bazel //tools/autograd to shared build structure"
Apr 7, 2022
9480c5b
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
314f2c9
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
fb7e864
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
6920b57
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
d6a3e1a
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
5855c23
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
3403d13
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
36110a3
Update on "port Bazel //tools/autograd to shared build structure"
Apr 8, 2022
d2f6061
Update on "port Bazel //tools/autograd to shared build structure"
Apr 12, 2022
adb122d
Update on "port Bazel //tools/autograd to shared build structure"
Apr 12, 2022
0922d5f
Update on "port Bazel //tools/autograd to shared build structure"
Apr 12, 2022
9a49f31
Update on "port Bazel //tools/autograd to shared build structure"
Apr 12, 2022
4d4166e
Update on "port Bazel //tools/autograd to shared build structure"
Apr 12, 2022
0e20456
Update on "port Bazel //tools/autograd to shared build structure"
Apr 13, 2022
43cb358
Update on "port Bazel //tools/autograd to shared build structure"
Apr 14, 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
14 changes: 4 additions & 10 deletions tools/autograd/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
py_library(
name = "autograd",
srcs = glob(["*.py"]),
data = glob([
"*.yaml",
"templates/*",
]),
visibility = ["//:__subpackages__"],
deps = ["//tools/codegen"],
)
load("//:tools/bazel.bzl", "rules")
load(":build.bzl", "define_targets")

define_targets(rules = rules)
14 changes: 14 additions & 0 deletions tools/autograd/build.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
def define_targets(rules):
rules.py_library(
name = "autograd",
srcs = rules.glob(["*.py"]),
data = rules.glob([
"*.yaml",
"templates/*",
]),
visibility = ["//:__subpackages__"],
deps = [
rules.requirement("PyYAML"),
"//tools/codegen",
],
)