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