diff options
| author | Dante Niewenhuis <d.niewenhuis@hotmail.com> | 2025-07-16 16:56:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-16 16:56:28 +0200 |
| commit | 0c0cf25616771cd40a9e401edcba4a5e5016f76e (patch) | |
| tree | 90fa673939a6c4c53900a6aa6eef073ad2957e34 /opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv | |
| parent | 089c449762950b4322c04f73ef7fe0e10af615df (diff) | |
Added Workflows (#359)
* Implemented Workflows for OpenDC
Diffstat (limited to 'opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv')
| -rw-r--r-- | opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt index 181ca8e8..3d0341b2 100644 --- a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt +++ b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt @@ -91,6 +91,18 @@ public val resourceGpuCapacity: String = "gpu_capacity" public val resourceGpuMemCapacity: String = "gpu_mem_capacity" /** + * The parents of the resource that need to be completed before this resource can be used. + */ +@JvmField +public val resourceParents: String = "parents" + +/** + * The children of the resource that cannot be started before this is completed. + */ +@JvmField +public val resourceChildren: String = "children" + +/** * Nature of the task. Delayable, interruptible, etc. */ @JvmField |
