Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:06

0001 /**
0002 QProp_test.cc : CPU version of the CUDA QPropTest.cc
0003 =======================================================
0004 
0005 Usage::
0006 
0007     ./QProp_test.sh 
0008 
0009 **/
0010 
0011 #include "SPropMockup.h"
0012 #include "QPropTest.h"
0013 
0014 int main()
0015 {
0016     const NP* propcom = SPropMockup::CombinationDemo();
0017     std::cout << " propcom " << ( propcom ? propcom->sstr() : "-" ) << std::endl ; 
0018 
0019     //int nx = 161 ; 
0020     int nx = 1601 ; 
0021 
0022     QPropTest<float> qpt(propcom, 0.f, 16.f, nx ) ; 
0023     qpt.lookup(); 
0024     qpt.save(); 
0025 
0026 
0027     return 0 ; 
0028 }