Skip to content

Commit c79428e

Browse files
committed
Cleanup for PR, lots of fixing whitespace and long lines, removed some unused requirements and code, and added some new entries to .gitignore.
1 parent 6c3c64e commit c79428e

File tree

10 files changed

+487
-468
lines changed

10 files changed

+487
-468
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,20 @@ artifacts/
8282
# Chutzpah Test files
8383
_Chutzpah*
8484

85+
# Python
86+
__pycache__/
87+
*.py[cod]
88+
*$py.class
89+
90+
# Virtual environments
91+
.env
92+
.venv
93+
env/
94+
venv/
95+
ENV/
96+
env.bak/
97+
venv.bak/
98+
8599
# Visual C++ cache files
86100
ipch/
87101
*.aps

scripts/crank-scheduler/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ python main.py --config config.json --list-jobs-by-machine
165165
- **Machine**: Represents a physical machine with multiple capabilities and preferences
166166
- **Scenario**: Represents a performance test scenario with requirements and target machines
167167
- **MachineAllocator**: Handles machine assignment logic with preference matching and capability-based selection
168-
- **RuntimeEstimator**: Estimates runtimes for scenarios without known values based on similar scenarios
169168
- **CrankScheduler**: Main scheduler that creates optimized schedules with stage-based execution
170169
- **ScheduleSplitter**: Divides large schedules into smaller, parallelizable units
171170

0 commit comments

Comments
 (0)