Skip to content

Commit d8c8862

Browse files
Allow jax_cache_dir to be None.
PiperOrigin-RevId: 874205553
1 parent 2b3a5f1 commit d8c8862

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/maxtext/configs/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1301,7 +1301,7 @@ class DevelopmentAndDebugging(BaseModel):
13011301
"""General settings for development and debugging."""
13021302

13031303
constant_bound_config: list = Field([], description="Legacy configuration for constant bounds.")
1304-
jax_cache_dir: PathStr = Field(
1304+
jax_cache_dir: PathStr | None = Field(
13051305
os.path.join(os.path.expanduser("~"), "jax_cache"),
13061306
description="Directory for JAX compilation cache.",
13071307
)

0 commit comments

Comments
 (0)