/* This software contains source code provided by NVIDIA Corporation. * The program is based on the example code hist_gpu_gmem_atomics.cu of * Chapter 9 of the "CUDA by Example" book. * * A program az NVIDIA Corporation által készített programkódot tartalmaz. * A program a "Cuda by Example" tankönyv 9. hist_gpu_gmem_atomics.cu * példaprogramjára épül. */ #include #include #include #include #include using namespace std; #define SIZE (100*1024*1024) void* big_random_block( int size ) { unsigned char *data = (unsigned char*)malloc( size ); for (int i=0; i>>( dev_buffer, SIZE, dev_histo ); unsigned int histo[256]; cudaMemcpy( histo, dev_histo, 256 * sizeof( int ), cudaMemcpyDeviceToHost ); // get stop time, and display the timing results cudaEventRecord( stop, 0 ); cudaEventSynchronize( stop ); float elapsedTime; cudaEventElapsedTime( &elapsedTime, start, stop ); long histoCount = 0; for (int i=0; i<256; i++) { histoCount += histo[i]; cout << i << ": " << histo[i] << endl; } cout << endl; cout << "Time to generate: " << elapsedTime << " msec." << endl; cout << "Histogram Sum: " << histoCount << endl; // verify that we have the same counts via CPU for (int i=0; i