You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem description:
When using the DPC++ reduction library for float type add reduction, info::event_profiling::command_{start/end} returned incorrect timings (too small). For int type add reduction, the timings are correct.
Sample output when using T = float:
$ ./reduction_timing.exe 1048576 128
n = 1048576, b = 128
Runtime with reduction = 64513 ns
Runtime without reduction = 175105 ns
Sample output when using T = int:
$ ./reduction_timing.exe 1048576 128
n = 1048576, b = 128
Runtime with reduction = 2096161 ns
Runtime without reduction = 175102 ns