Skip to content
Snippets Groups Projects

Update task dependency with nber link

Merged Loic Hausammann requested to merge count_link into master
1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
205 238
206 239 /* construct line */
207 if (ta->subtype == task_subtype_none)
208 sprintf(ta_name, "%s", taskID_names[ta->type]);
209 else
210 sprintf(ta_name, "\"%s %s\"", taskID_names[ta->type],
211 subtaskID_names[ta->subtype]);
212
213 if (tb->subtype == task_subtype_none)
214 sprintf(tb_name, "%s", taskID_names[tb->type]);
215 else
216 sprintf(tb_name, "\"%s %s\"", taskID_names[tb->type],
217 subtaskID_names[tb->subtype]);
218
219 /* Write to the ffile */
220 fprintf(f, "\t %s->%s;\n", ta_name, tb_name);
  • Thanks! Works nicely with and without MPI and with all the various options.

  • mentioned in commit 1f0fda81

  • Please register or sign in to reply
    Loading