mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 11:56:07 +00:00

It seems to me that jaxlib development must be mostly happening on CI, because some basics are pretty essential. Here are a few things I've been typing/carrying for a while in my flow: * Add .bazelrc.user to .gitignore so it doesn't accidentally get checked in. * Add configs for 'debug_symbols' and 'debug' that make some things minimally workable under a debugger (or to get backtraces, etc). * Add `--force-reinstall` to the copy/paste command to update a built jaxlib wheel (without this, if you are iterating, it fairly quietly does nothing).
31 lines
342 B
Plaintext
31 lines
342 B
Plaintext
*.pyc
|
|
*.so
|
|
*.egg-info
|
|
*.whl
|
|
/build/lib
|
|
/build/bazel*
|
|
/dist/
|
|
.ipynb_checkpoints
|
|
/bazel-*
|
|
.jax_configure.bazelrc
|
|
/tensorflow
|
|
.DS_Store
|
|
.mypy_cache/
|
|
.pytype/
|
|
/docs/build
|
|
*_pb2.py
|
|
/docs/notebooks/.ipynb_checkpoints/
|
|
/docs/_autosummary
|
|
.idea
|
|
.vscode
|
|
.envrc
|
|
jax.iml
|
|
.bazelrc.user
|
|
|
|
# virtualenv/venv directories
|
|
/venv/
|
|
/bin/
|
|
/include/
|
|
/lib/
|
|
/share/
|