Skip to content
Snippets Groups Projects
Commit 52f9195d authored by Nordine Feddal's avatar Nordine Feddal
Browse files

check the relation between job <-> within python

parent f231a340
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ relation_job_id_task_id = dict() ...@@ -9,6 +9,7 @@ relation_job_id_task_id = dict()
relation_task_id_task_name = dict() relation_task_id_task_name = dict()
list_gpu_tasks_object = [] list_gpu_tasks_object = []
list_gpusched_step_object = []
""" """
Parse a file to retrieve GPU task information. Parse a file to retrieve GPU task information.
...@@ -119,6 +120,7 @@ def parse_sched_order(args): ...@@ -119,6 +120,7 @@ def parse_sched_order(args):
currGpuSchedStep = GPUSchedResultStep(number_kernels, step, step_no) currGpuSchedStep = GPUSchedResultStep(number_kernels, step, step_no)
outFile.write(currGpuSchedStep.dump_str()) outFile.write(currGpuSchedStep.dump_str())
list_gpusched_step_object.append(currGpuSchedStep)
step_no += 1 step_no += 1
outFile.write(GPUSchedStepParams.dump_global_vector()) outFile.write(GPUSchedStepParams.dump_global_vector())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment