Beispiel #1
0
        static void Main(string[] args)
        {
            // initialize our FFTW test class
            FFTWtest test = new FFTWtest(16384);

            // run the tests, print debug output
            test.TestAll();

            // pause for user input, then quit
            System.Console.WriteLine("\nDone. Press any key to exit.");
            String str = System.Console.ReadLine();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            if (forgetWisdom)
            {
                fftwf.fftwf_forget_wisdom();
            }
            else
            {
                Console.WriteLine("Importing wisdom (wisdom speeds up the plan creation process, if that plan was previously created at least once)");
                fftwf.import_wisdom_from_filename("wisdom.wsd");
            }

            // initialize our FFTW test class
            FFTWtest test = new FFTWtest(sampleSize);

            // run the tests, print debug output
            test.TestAll();

            // pause for user input, then quit
            System.Console.WriteLine("\nDone. Press any key to exit.");
            String str = System.Console.ReadLine();
        }
Beispiel #3
0
        static void Main(string[] args)
        {
            // initialize our FFTW test class
            FFTWtest test = new FFTWtest(16384);

            // run the tests, print debug output
            test.TestAll();

            // pause for user input, then quit
            System.Console.WriteLine("\nDone. Press any key to exit.");
            String str = System.Console.ReadLine();
        }