@@ -30,6 +30,7 @@ licenses(["notice"])
3030py_library (
3131 name = "auto_batching" ,
3232 srcs = ["__init__.py" ],
33+ strict_deps = False ,
3334 deps = [
3435 ":allocation_strategy" ,
3536 ":dsl" ,
@@ -49,6 +50,7 @@ py_library(
4950py_library (
5051 name = "instructions" ,
5152 srcs = ["instructions.py" ],
53+ strict_deps = False ,
5254 deps = [
5355 # numpy dep,
5456 # tensorflow dep, # For pywrap_tensorflow.IsNamedtuple
@@ -60,6 +62,7 @@ py_library(
6062 srcs = [
6163 "numpy_backend.py" ,
6264 ],
65+ strict_deps = False ,
6366 deps = [
6467 ":instructions" ,
6568 # numpy dep,
@@ -71,6 +74,7 @@ py_library(
7174 srcs = [
7275 "tf_backend.py" ,
7376 ],
77+ strict_deps = False ,
7478 deps = [
7579 ":instructions" ,
7680 ":xla" ,
@@ -83,6 +87,7 @@ py_library(
8387 srcs = [
8488 "type_inference.py" ,
8589 ],
90+ strict_deps = False ,
8691 deps = [
8792 ":instructions" ,
8893 # absl/logging dep,
@@ -94,6 +99,7 @@ py_library(
9499 srcs = [
95100 "virtual_machine.py" ,
96101 ],
102+ strict_deps = False ,
97103 deps = [
98104 ":instructions" ,
99105 ],
@@ -104,6 +110,7 @@ py_library(
104110 srcs = [
105111 "liveness.py" ,
106112 ],
113+ strict_deps = False ,
107114 deps = [
108115 ":instructions" ,
109116 ],
@@ -114,6 +121,7 @@ py_library(
114121 srcs = [
115122 "lowering.py" ,
116123 ],
124+ strict_deps = False ,
117125 deps = [
118126 ":instructions" ,
119127 ":liveness" ,
@@ -125,6 +133,7 @@ py_library(
125133 srcs = [
126134 "stack_optimization.py" ,
127135 ],
136+ strict_deps = False ,
128137 deps = [
129138 ":instructions" ,
130139 ],
@@ -135,6 +144,7 @@ py_library(
135144 srcs = [
136145 "allocation_strategy.py" ,
137146 ],
147+ strict_deps = False ,
138148 deps = [
139149 ":instructions" ,
140150 ":liveness" ,
@@ -146,6 +156,7 @@ py_library(
146156 srcs = [
147157 "stackless.py" ,
148158 ],
159+ strict_deps = False ,
149160 deps = [
150161 ":instructions" ,
151162 ],
@@ -156,6 +167,7 @@ py_library(
156167 srcs = [
157168 "dsl.py" ,
158169 ],
170+ strict_deps = False ,
159171 deps = [
160172 ":instructions" ,
161173 ],
@@ -167,6 +179,7 @@ py_library(
167179 "frontend.py" ,
168180 "gast_util.py" ,
169181 ],
182+ strict_deps = False ,
170183 deps = [
171184 ":allocation_strategy" ,
172185 ":dsl" ,
@@ -187,6 +200,7 @@ py_library(
187200 srcs = [
188201 "backend_test_lib.py" ,
189202 ],
203+ strict_deps = False ,
190204 deps = [
191205 # tensorflow dep,
192206 ],
@@ -195,6 +209,7 @@ py_library(
195209py_library (
196210 name = "test_programs" ,
197211 srcs = ["test_programs.py" ],
212+ strict_deps = False ,
198213 deps = [
199214 ":instructions" ,
200215 # numpy dep,
@@ -204,6 +219,7 @@ py_library(
204219py_library (
205220 name = "xla" ,
206221 srcs = ["xla.py" ],
222+ strict_deps = False ,
207223 deps = [
208224 # tensorflow dep,
209225 ],
0 commit comments