Cloudy
A research framework for simulating and benchmarking cloud computing scheduling algorithms.
Install (local development mode)
pip install -e .
Usage
from cloudy.algorithms import RoundRobin
from cloudy.core import Task
tasks = [Task("T1", 5), Task("T2", 3), Task("T3", 8)]
algo = RoundRobin(quantum=2)
result = algo.schedule(tasks)
for t in result:
print(t.name, "waiting_time =", t.waiting_time, "completion_time =", t.completion_time)
Release files for cloudy-research 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cloudy_research-0.0.1.tar.gz | 3.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cloudy_research-0.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 8.2 kB
Release files / cloudy_research-0.0.1.tar.gz
| Download URL | cloudy_research-0.0.1.tar.gz |
|---|---|
| Size | 3.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c6bd0d0125cdcebd80b864ed49ba3288d8d0ddf8b9f6e3734d3a415790c6c30d
|
|
BLAKE2b-256 checksum How to use checksums |
c1b7349b67e206330e4f04109c148dca00546b6ac02d6425b082d3bd43aa64ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / cloudy_research-0.0.1-py3-none-any.whl
| Download URL | cloudy_research-0.0.1-py3-none-any.whl |
|---|---|
| Size | 4.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3c12c2e6bac85f73b3d6c213dffae4af18652b6b488266fc8d227d94408e8406
|
|
BLAKE2b-256 checksum How to use checksums |
a00ec23658b94e2c792a7f63622a35e84d7cea7892352fb38ac5d29cc123446c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|