Software Archive
Read-only legacy content
17061 Discussions

Using Cilkview report with same tag

Ruben_Perez
Beginner
530 Views
In my program I have a loop where I do some work I wish to profile, and some work that I do not(some GUI updates/writing to file). However, I can't find a way to use cilkview to analyze only this portion. The docs state that loops like this
for (int count=0; count
{
cilkview_data_t data;
__cilkview_query(d);
do_parallel_stuff();
__cilkview_report(d, NULL, "stuff_tag", CV_REPORT_WRITE_TO_RESULTS);
do_some_serial_stuff();
}
will have the fastest run used for the graph. Is there anyway to have cilkview concatenate the reports?
Also, the docs directory is not included in the Linux version, only the Windows version.
0 Kudos
2 Replies
William_Leiserson__I
530 Views
There are two bugs, there: inability to concatonate results, which the old Cilkview had, and lack of docs in the Linux package. I'll look into those.
0 Kudos
William_Leiserson__I
530 Views
An updated version of the Linux package has been posted that includes the doc. The ability to concatonate the results is an interface bug that will take a little more work. I'll keep you posted.
0 Kudos
Reply