2023-11-09 23:25:56 +03:00
|
|
|
# Ignore Python compiled files
|
2020-02-01 03:06:44 +03:00
|
|
|
*.pyc
|
2023-11-09 23:25:56 +03:00
|
|
|
|
|
|
|
# Ignore IDE-specific files and directories
|
|
|
|
.idea/ # JetBrains IDE settings
|
|
|
|
.vscode/ # Visual Studio Code settings
|
|
|
|
.theia/ # Theia IDE settings
|
|
|
|
|
|
|
|
# Ignore temporary and backup files
|
|
|
|
*~ # General backup files
|
|
|
|
*.swp # Vim swap files
|
|
|
|
|
|
|
|
# Ignore log files
|
2020-05-19 11:00:53 +03:00
|
|
|
*.log
|
2023-11-09 23:25:56 +03:00
|
|
|
|
|
|
|
# Ignore a specific generated file
|
2020-09-17 04:57:43 +03:00
|
|
|
deepspeed/git_version_info_installed.py
|
2023-11-09 23:25:56 +03:00
|
|
|
|
|
|
|
# Ignore Python bytecode cache
|
2022-04-19 20:15:59 +03:00
|
|
|
__pycache__
|
2020-02-10 18:07:37 +03:00
|
|
|
|
|
|
|
# Build + installation data
|
2023-11-09 23:25:56 +03:00
|
|
|
build/ # Build artifacts
|
|
|
|
dist/ # Distribution files
|
|
|
|
*.so # Compiled shared objects
|
|
|
|
deepspeed.egg-info/ # Deepspeed package info
|
|
|
|
build.txt # Build information
|
|
|
|
|
|
|
|
# Website generated files
|
|
|
|
docs/_site/ # Jekyll generated site
|
|
|
|
docs/build # Generated documentation
|
2020-09-11 01:44:47 +03:00
|
|
|
docs/code-docs/source/_build
|
2020-04-22 08:18:47 +03:00
|
|
|
docs/code-docs/_build
|
2020-03-17 23:49:48 +03:00
|
|
|
docs/code-docs/build
|
2023-11-09 23:25:56 +03:00
|
|
|
.sass-cache/ # SASS cache
|
|
|
|
.jekyll-cache/ # Jekyll cache
|
2020-03-17 23:49:48 +03:00
|
|
|
.jekyll-metadata
|
2020-03-25 19:34:27 +03:00
|
|
|
|
2020-09-01 07:15:50 +03:00
|
|
|
# Testing data
|
2023-11-09 23:25:56 +03:00
|
|
|
tests/unit/saved_checkpoint/ # Saved checkpoints for testing
|