Click here to Skip to main content
15,896,915 members
Articles / Programming Languages / CUDA

GPGPU on Accelerating Wave PDE

Rate me:
Please Sign up or sign in to vote.
4.93/5 (50 votes)
13 Oct 2012CPOL41 min read 50.2K   1.4K   57  
A Wave PDE simulation using GPGPU capabilities
#include <windows.h>

/*
	Usage example

	StartCounter();

	// Event to be measured

	printf("%3lf - time elapsed\n", GetCounter());

*/

double PCFreq = 0.0;
__int64 CounterStart = 0;

void StartCounter()
{
	LARGE_INTEGER li;
	if(!QueryPerformanceFrequency(&li))
		printf("QUERYPERFORMANCE FAILED\n");

	PCFreq = double(li.QuadPart)/1000.0;

	QueryPerformanceCounter(&li);
	CounterStart = li.QuadPart;
}

double GetCounter()
{
	LARGE_INTEGER li;
	QueryPerformanceCounter(&li);

	return double(li.QuadPart-CounterStart)/PCFreq;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Italy Italy
I'm a Computer Science Engineer and I've been programming with a large variety of technologies for years. I love writing software with C/C++, CUDA, .NET and playing around with reverse engineering

Comments and Discussions