Test float implementation

This commit is contained in:
Guilhem Lavaux 2012-11-11 14:26:26 -05:00
parent db2ad96752
commit c49c8cb232

View File

@ -51,5 +51,7 @@ int main(int argc, char **argv)
{ {
test_2d<double>(128,128); test_2d<double>(128,128);
test_2d<double>(131,128); test_2d<double>(131,128);
test_2d<float>(128,128);
test_2d<float>(131,128);
return 0; return 0;
} }