From 0545500de47120bda8f6a8738002a0579ede16a7 Mon Sep 17 00:00:00 2001 From: Henri Casanova Date: Sat, 14 Aug 2021 18:40:58 -1000 Subject: [PATCH] (#220) Documentation of JobManager::submitJob() --- src/wrench/managers/JobManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wrench/managers/JobManager.cpp b/src/wrench/managers/JobManager.cpp index c38f524609..9c0b4ff4ff 100644 --- a/src/wrench/managers/JobManager.cpp +++ b/src/wrench/managers/JobManager.cpp @@ -263,6 +263,10 @@ namespace wrench { * - to a BatchComputeService: {{"-t":"" (requested number of minutes)},{"-N":"" (number of requested hosts)},{"-c":"" (number of requested cores per host)}[,{"-u":"" (username)}]} * - to a VirtualizedClusterComputeService: {} (jobs should not be submitted directly to the service)} * - to a CloudComputeService: {} (jobs should not be submitted directly to the service)} + * - to a HTCondorComputeService: + * - For a "grid universe" job that will be submitted to a child BatchComputeService: {{"universe":"grid", {"-t":"" (requested number of minutes)},{"-N":"" (number of requested hosts)},{"-c":"" (number of requested cores per host)}[,{"-service":"" (batch service name)}, {"-u":"" (username)}]} + * - For a "non-grid universe" job that will be submitted to a child BareMetalComputeService: {} + * * * @throw std::invalid_argument * @throw WorkflowExecutionException