Skip to content

Commit 1e84d17

Browse files
authored
Merge pull request #2 from ecoPrimals/master
meger
2 parents f52055e + 9bec3ed commit 1e84d17

100 files changed

Lines changed: 10340 additions & 2613 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 14 additions & 137 deletions
Original file line numberDiff line numberDiff line change
@@ -1,155 +1,32 @@
1-
# Rust/Cargo
2-
/target/
3-
tools/target/
4-
**/*.rs.bk
1+
# Rust
2+
target/
53
Cargo.lock
4+
**/*.rs.bk
5+
*.pdb
66

7-
# IDE/Editor
8-
.vscode/
7+
# IDE
98
.idea/
9+
.vscode/
1010
*.swp
1111
*.swo
1212
*~
1313

1414
# OS
1515
.DS_Store
16-
.DS_Store?
17-
._*
18-
.Spotlight-V100
19-
.Trashes
20-
ehthumbs.db
2116
Thumbs.db
2217

23-
# Build artifacts
24-
*.o
25-
*.a
26-
*.so
27-
*.dylib
28-
*.dll
29-
*.exe
30-
31-
# Logs
32-
*.log
33-
*.out
34-
*.err
35-
36-
# Environment
37-
.env
38-
.env.local
39-
.env.*.local
40-
41-
# Documentation build
42-
/docs/_build/
43-
/book/
44-
45-
# Test artifacts
46-
/test-results/
47-
/coverage/
18+
# Testing
4819
*.profraw
4920
*.profdata
50-
*.gcda
51-
*.gcno
52-
# Benchmark and showcase results
53-
showcase/results/*.json
54-
showcase/results/*.log
55-
showcase/results/*.out
56-
# Performance and profiling
57-
perf.data
58-
perf.data.old
59-
flamegraph.svg
6021

61-
# Temporary files
22+
# Temporary
6223
*.tmp
63-
*.temp
64-
/tmp/
65-
/temp/
66-
67-
# Database
68-
*.db
69-
*.sqlite
70-
*.sqlite3
71-
72-
# Keys and certificates (security)
73-
*.pem
74-
*.key
75-
*.crt
76-
*.p12
77-
*.pfx
78-
79-
# ToadStool specific
80-
# Substrate detection cache
81-
.substrate_cache/
82-
# Execution logs
83-
/execution_logs/
84-
# Performance metrics
85-
/metrics/
86-
# Biome data
87-
/biomes/
88-
# Crypto locks
89-
*.lock.json
90-
# Runtime cache
91-
.runtime_cache/
92-
93-
# Node.js (if any)
94-
node_modules/
95-
npm-debug.log*
96-
yarn-debug.log*
97-
yarn-error.log*
24+
*.log
25+
.env.local
9826

99-
# Python (if any)
100-
__pycache__/
101-
*.py[cod]
102-
*$py.class
27+
# Build artifacts
28+
*.o
10329
*.so
104-
.Python
105-
build/
106-
develop-eggs/
107-
dist/
108-
downloads/
109-
eggs/
110-
.eggs/
111-
lib/
112-
lib64/
113-
parts/
114-
sdist/
115-
var/
116-
wheels/
117-
*.egg-info/
118-
.installed.cfg
119-
*.egg
120-
121-
# Jupyter Notebook
122-
.ipynb_checkpoints
123-
124-
# Local configuration
125-
config.local.toml
126-
config.local.json
127-
128-
# System files
129-
*~
130-
.fuse_hidden*
131-
.nfs*
132-
133-
# Backup files
134-
*.bak
135-
*.backup
136-
*.old
137-
138-
# Large datasets and archives (construction debris from testing)
139-
*.tar.gz
140-
*.zip
141-
*.7z
142-
*.rar
143-
showcase/**/datasets/*.tar.gz
144-
showcase/**/datasets/*.zip
145-
showcase/**/datasets/cifar-*
146-
showcase/**/datasets/imagenet-*
147-
showcase/**/datasets/mnist-*
148-
zluda-external/
149-
150-
# Build artifacts (CRITICAL - must not be committed!)
151-
**/target/
152-
**/*.timestamp
153-
**/*.rlib
154-
**/*.rmeta
30+
*.dylib
31+
*.dll
15532

0 commit comments

Comments
 (0)