Commit a9e7323b authored by Brewer, Wes's avatar Brewer, Wes
Browse files

Use hashed_user_name in lieu of job_name

parent 27277292
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -63,6 +63,7 @@ def load_data_from_df(allocation_df, node_df, step_df, **kwargs):

    for _, row in tqdm(allocation_df.iterrows(), total=len(allocation_df), desc="Processing Jobs"):
        node_data = node_df[node_df['allocation_id'] == row['allocation_id']]

        nodes_required = row['num_nodes']

        wall_time = compute_wall_time(row['begin_time'], row['end_time'])
@@ -106,7 +107,7 @@ def load_data_from_df(allocation_df, node_df, step_df, **kwargs):
        if time_offset >= 0:

            job_info = job_dict(nodes_required, \
                                row['primary_job_id'], \
                                row['hashed_user_id'], \
                                cpu_trace, gpu_trace, wall_time, \
                                row['exit_status'], \
                                scheduled_nodes, \