Skip to content

Commit ad97658

Browse files
committed
add test build file
1 parent e26ae2b commit ad97658

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

test/BUILD

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
load("@rules_python//python:py_test.bzl", "py_test")
2+
3+
py_test(
4+
name = "test",
5+
srcs = [
6+
"test.py",
7+
],
8+
deps = [
9+
"//src/enzyme_ad/jax:enzyme_jax_internal",
10+
],
11+
)
12+
13+
py_test(
14+
name = "bench_vs_xla",
15+
srcs = [
16+
"bench_vs_xla.py",
17+
],
18+
deps = [
19+
"//src/enzyme_ad/jax:enzyme_jax_internal",
20+
],
21+
)
22+

0 commit comments

Comments
 (0)