.gitignore 1020 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ## Ignore Python compiled files
  2. *.pyc
  3. ## Ignore IDE-specific files and directories
  4. # JetBrains IDE settings
  5. .idea/
  6. # Visual Studio Code settings
  7. .vscode/
  8. # Theia IDE settings
  9. .theia/
  10. ## Ignore temporary and backup files
  11. # General backup files
  12. *~
  13. # Vim swap files
  14. *.swp
  15. ## Ignore log files
  16. *.log
  17. ## Ignore a specific generated file
  18. deepspeed/git_version_info_installed.py
  19. ## Ignore Python bytecode cache
  20. __pycache__
  21. ## Build + installation data
  22. # Build artifacts
  23. build/
  24. # Distribution files
  25. dist/
  26. # Compiled shared objects
  27. *.so
  28. # Deepspeed package info
  29. deepspeed.egg-info/
  30. # Build information
  31. build.txt
  32. ## Website generated files
  33. # Jekyll generated site
  34. docs/_site/
  35. # Generated documentation
  36. docs/build
  37. docs/code-docs/source/_build
  38. docs/code-docs/_build
  39. docs/code-docs/build
  40. # SASS cache
  41. .sass-cache/
  42. # Jekyll cache
  43. .jekyll-cache/
  44. .jekyll-metadata
  45. ## Testing data
  46. # Saved checkpoints for testing
  47. tests/unit/saved_checkpoint/
  48. # HIP files created during AMD compilation
  49. *_hip.cpp
  50. *_hip.h
  51. *.hip
  52. *.cuh
  53. *hip_layers.h