Skip to content

Commit

Permalink
Update references to JAX's GitHub repo
Browse files Browse the repository at this point in the history
JAX has moved from https://github.com/google/jax to https://github.com/jax-ml/jax

PiperOrigin-RevId: 702886844
  • Loading branch information
jakeharmon8 authored and copybara-github committed Dec 5, 2024
1 parent 307b0bc commit 04f0f67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions clu/profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ def start(logdir: str, options=None):
if options is not None:
raise NotImplementedError(
"'options' not supported by clu.profiler.start(). Please file an issue "
"at https://github.com/google/jax/issues requesting profiler option "
"support if you need this feature.")
"at https://github.com/jax-ml/jax/issues requesting profiler option "
"support if you need this feature."
)
if logdir is None:
raise ValueError("Must specify logdir where profile should be written!")
jax.profiler.start_trace(logdir)
Expand Down
2 changes: 1 addition & 1 deletion clu_synopsis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"https://github.com/google/CommonLoopUtils\n",
"\n",
"This package is usually used with\n",
"[JAX](https://github.com/google/jax)\n",
"[JAX](https://github.com/jax-ml/jax)\n",
"/\n",
"[Flax](https://github.com/google/flax)\n",
"ML projects, but it can also be used with other ML frameworks.\n",
Expand Down

0 comments on commit 04f0f67

Please sign in to comment.