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

An alternative to installing `jax` using `pip install -e .` is to use `python setup.py`. This creates build/ and dist/ directories that should not be included in diffs since they are meant to be local. This PR adds those entries to the .gitignore file
14 lines
165 B
Plaintext
14 lines
165 B
Plaintext
*.pyc
|
|
*.so
|
|
/jax/lib/pywrap_xla.py
|
|
/jax/lib/xla_client.py
|
|
/jax/lib/xla_data_pb2.py
|
|
*.egg-info
|
|
.ipynb_checkpoints
|
|
/bazel-*
|
|
.bazelrc
|
|
/tensorflow
|
|
.DS_Store
|
|
build/
|
|
dist/
|