Skip to content
Snippets Groups Projects
Commit d1d6cfca authored by Benjamin Wynne's avatar Benjamin Wynne
Browse files

Added a scheduler option for verbose views

parent 0c05861a
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,6 @@ class AlgScheduler:
else :
self.log.warning(self.SchedulerSvc.getFullName() + " has no property \"ShowDataDependencies\"")
#
## set the DataLoader Algorithm to handle unmet input data deps
def setDataLoaderAlg(self,dataLoadAlg):
......@@ -123,6 +122,13 @@ class AlgScheduler:
else :
self.log.warning(self.SchedulerSvc.getFullName() + " has no property \"EnableConditions\"")
#
## enable verbose view state logging
def EnableVerboseViews(self,enable=True):
if ( 'VerboseSubSlots' in self.SchedulerSvc.properties() ):
self.SchedulerSvc.VerboseSubSlots = enable
else :
self.log.warning(self.SchedulerSvc.getFullName() + " has no property \"VerboseSubSlots\"")
#
## explicitly set the thread pool size
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment