From 0c0cf25616771cd40a9e401edcba4a5e5016f76e Mon Sep 17 00:00:00 2001 From: Dante Niewenhuis Date: Wed, 16 Jul 2025 16:56:28 +0200 Subject: Added Workflows (#359) * Implemented Workflows for OpenDC --- .../src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv') 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 @@ -90,6 +90,18 @@ public val resourceGpuCapacity: String = "gpu_capacity" @JvmField 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. */ -- cgit v1.2.3