Skip to content

Commit

Permalink
Add orbax/checkpoint/_src/BUILD
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 714844457
  • Loading branch information
liangyaning33 authored and Orbax Authors committed Jan 13, 2025
1 parent ea00fa3 commit cab1e10
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions checkpoint/orbax/checkpoint/_src/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package(
default_applicable_licenses = ["//:package_license"],
default_visibility = ["//visibility:public"],
)

py_library(
name = "asyncio_utils",
srcs = ["asyncio_utils.py"],
)

py_test(
name = "asyncio_utils_test",
srcs = ["asyncio_utils_test.py"],
deps = [":asyncio_utils"],
)

py_library(
name = "composite",
srcs = ["composite.py"],
)

py_test(
name = "composite_test",
srcs = ["composite_test.py"],
deps = [":composite"],
)
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ etils[epath]
simplejson
chex
optax
nest_asyncio

0 comments on commit cab1e10

Please sign in to comment.