mirror of
https://github.com/L-yang-yang/cugenopt.git
synced 2026-05-01 13:12:37 +02:00
Initial commit: cuGenOpt GPU optimization solver
This commit is contained in:
commit
fc5a0ff4af
117 changed files with 25545 additions and 0 deletions
109
.gitignore
vendored
Normal file
109
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
# === Documents & Papers ===
|
||||
paper/
|
||||
paper_en/
|
||||
paper_v/
|
||||
paper_v2/
|
||||
paper_v2_en/
|
||||
paper_v3/
|
||||
paper_v3_en/
|
||||
docs/
|
||||
design/
|
||||
*.zip
|
||||
*.tar.gz
|
||||
design/
|
||||
STATUS.md
|
||||
PROJECT_STRUCTURE.md
|
||||
|
||||
user_problems/
|
||||
|
||||
|
||||
|
||||
archive/
|
||||
|
||||
prototype/MULTI_GPU_README.md
|
||||
|
||||
|
||||
# === Experiment results & logs ===
|
||||
benchmark/results/
|
||||
benchmark/experiments/*/results/
|
||||
benchmark/DESIGN.md
|
||||
|
||||
# === Experiment data (downloadable from public sources) ===
|
||||
benchmark/data/
|
||||
|
||||
# === User-generated problems (personal workspace) ===
|
||||
user_problems/
|
||||
|
||||
# === Skill design docs (implementation is in .cursor/skills/) ===
|
||||
skills/cugenopt-problem-gen/DESIGN.md
|
||||
|
||||
# === Experiment intermediate outputs (inside experiment dirs) ===
|
||||
benchmark/experiments/*/*.csv
|
||||
benchmark/experiments/*/*.log
|
||||
|
||||
# === Embedded data files (large, downloadable) ===
|
||||
prototype/problems/tsplib_data.h
|
||||
|
||||
# === Python package (cugenopt) ===
|
||||
python/PUBLISH_GUIDE.md
|
||||
python/deploy_remote.sh
|
||||
python/test_custom_op_benchmark.py
|
||||
python/test_p25.py
|
||||
python/test_p25_full.py
|
||||
|
||||
# === Python cache ===
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
|
||||
# === Python packaging ===
|
||||
dist/
|
||||
build/
|
||||
*.egg-info/
|
||||
*.egg
|
||||
.eggs/
|
||||
|
||||
# === Python testing & linting ===
|
||||
.pytest_cache/
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
|
||||
# === OS & IDE ===
|
||||
.DS_Store
|
||||
.cursor/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# === Build artifacts ===
|
||||
*.o
|
||||
*.out
|
||||
*.a
|
||||
*.so
|
||||
*.dylib
|
||||
solve
|
||||
a.out
|
||||
|
||||
# === CUDA build artifacts ===
|
||||
*.cubin
|
||||
*.ptx
|
||||
*.fatbin
|
||||
|
||||
# === Temp & backup files ===
|
||||
*.bak
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# === Environment ===
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# === SSH keys & credentials ===
|
||||
*.pem
|
||||
*.key
|
||||
id_*
|
||||
Loading…
Add table
Add a link
Reference in a new issue