Skip to content

Commit 33d5651

Browse files
Merge pull request #4 from dhvll/main
Add hardware profiling system
2 parents 4d3aad4 + f6475ae commit 33d5651

File tree

4 files changed

+806
-0
lines changed

4 files changed

+806
-0
lines changed

src/.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
*.egg-info/
8+
dist/
9+
build/
10+
11+
# Virtual environments
12+
venv/
13+
env/
14+
ENV/
15+
16+
# IDE
17+
.vscode/
18+
.idea/
19+
*.swp
20+
*.swo
21+
*~
22+
23+
# OS
24+
.DS_Store
25+
Thumbs.db
26+
27+
# Testing
28+
.pytest_cache/
29+
.coverage
30+
htmlcov/
31+
32+
# Logs
33+
*.log
34+

0 commit comments

Comments
 (0)