Skip to content
Snippets Groups Projects
Commit bedf45fd authored by Niklas Eiling's avatar Niklas Eiling
Browse files

tests: increase warmup iterations in overhead test

parent 4213b497
No related branches found
No related tags found
No related merge requests found
Pipeline #1043008 passed
......@@ -4,3 +4,4 @@ test_api
test_cpu
test_kernel
test_kernel_call
cudnn-samples
......@@ -7,7 +7,7 @@
#include <cuda_runtime.h>
#define ITERATIONS 100000
#define WARUMUPS 10
#define WARMUPS 100
#define MEMSIZE 1024*1024
const int blocksize = 32;
......@@ -33,7 +33,7 @@ int main()
printf("init CUDA\n");
cudaGetDeviceCount(&cnt);
printf("1. cudaGetDeviceCount (%d iterations)\n", iterations);
for (int i=0; i != WARUMUPS; i++) {
for (int i=0; i != WARMUPS; i++) {
cudaGetDeviceCount(&cnt);
}
gettimeofday(&begin, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment