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; }