Sha256: b23b9a5a2e5e84b9eaa8a6eab41c2f06765e6d8ed3cb7c4fbe0e1f53974269c5

Contents?: true

Size: 423 Bytes

Versions: 1

Compression:

Stored size: 423 Bytes

Contents

  
  // Stop the timer for the measurement of the kernel execution time
  cudaThreadSynchronize();
  cudaEvent_t bones_stop2;
  cudaEventCreate(&bones_stop2);
  cudaEventRecord(bones_stop2,0);
  cudaEventSynchronize(bones_stop2);
  float bones_timer2 = 0;
  cudaEventElapsedTime(&bones_timer2,bones_start2,bones_stop2);
  printf(">>>\t\t (<algorithm_basename>): Execution time [kernel       ]: %.3lf ms \n", bones_timer2);

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bones-compiler-1.1.0 skeletons/GPU-CUDA/common/timer_2_stop.c