Blame view

validate/main.cpp 351 Bytes
f1402849   dmayerich   renewed commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  void cpuValidateComplex();

  void gpuValidateComplex();

  void cpuValidateBessel();
  void cpuValidateLegendre();

  

  int main()

  {

  	//validate the complex number class

  	//cpuValidateComplex();

  	//gpuValidateComplex();

  

  	//validate Bessel functions

  	cpuValidateBessel();
  
  	//validate the Legendre polynomials
  	cpuValidateLegendre();

  

  	return 0;

  }