Unverified Commit 496be40e authored by Chao Liu's avatar Chao Liu Committed by GitHub
Browse files

increase warm-up to 10 iter (#28)

parent 3753c4bc
......@@ -42,7 +42,10 @@ float launch_and_time_kernel(const StreamConfig& stream_config,
printf("Warm up 1 time\n");
#endif
// warm up
for(int i = 0; i < 10; i++)
{
kernel<<<grid_dim, block_dim, lds_byte, stream_config.stream_id_>>>(args...);
}
const int nrepeat = 10;
#if DEBUG_LOG
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment