Sha256: 53ec082640f1c88615a6535a5e56b70569a4cb1b74a103132f2bfbd1b9c21a3f

Contents?: true

Size: 438 Bytes

Versions: 3

Compression:

Stored size: 438 Bytes

Contents

  
  // End the timer for the measurement of the kernel and memory copy execution time
  cudaThreadSynchronize();
  cudaEvent_t bones_stop1;
  cudaEventCreate(&bones_stop1);
  cudaEventRecord(bones_stop1,0);
  cudaEventSynchronize(bones_stop1);
  float bones_timer1 = 0;
  cudaEventElapsedTime(&bones_timer1,bones_start1,bones_stop1);
  printf(">>>\t\t (<algorithm_basename>): Execution time [kernel+memcpy]: %.3lf ms \n", bones_timer1);

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bones-compiler-1.6.0 skeletons/GPU-CUDA/common/timer_1_stop.c
bones-compiler-1.3.1 skeletons/GPU-CUDA/common/timer_1_stop.c
bones-compiler-1.1.0 skeletons/GPU-CUDA/common/timer_1_stop.c