diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-02-14 00:53:24 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-02-14 00:53:24 +0100 |
| commit | 3fc32c0b6f02d245a544aaaa061094231830f661 (patch) | |
| tree | cf55b824a1d6746f7d218c39f0db1cc53a662edb /settings.gradle.kts | |
| parent | d40eae0264236be3a9d34f39a63adde8a9b47a57 (diff) | |
refactor: Remodel workloads and compute resource
This change remodels our model for workloads and compute resources in
order to support VM/container functionality where multiple workloads run
on a single machine.
In particular, we make the following changes:
- Move the compute-related source code into the `opendc-compute` module.
- Change from application-based model to image-based model, where the
image has exclusive access over the machine, instead of applications
that share the machine. We may model in the future again
applications/operating system, but at the moment, we do not need this
granularity, given that the workload traces can be simulated using VMs.
Diffstat (limited to 'settings.gradle.kts')
| -rw-r--r-- | settings.gradle.kts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts index 3f10026a..b591c654 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -26,6 +26,7 @@ rootProject.name = "opendc-simulator" include(":odcsim:odcsim-api") include(":odcsim:odcsim-engine-omega") include(":opendc:opendc-core") +include(":opendc:opendc-compute") include(":opendc:opendc-format") include(":opendc:opendc-workflows") include(":opendc:opendc-experiments-tpds") |
