Skip to content
Snippets Groups Projects
Commit d27c1928 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed previous commit

parent 449aa717
No related branches found
No related tags found
No related merge requests found
......@@ -44,32 +44,32 @@ TEST( DistributedGridMPIIO, Load_3D )
#ifdef HAVE_CUDA
TEST( DistributedGridMPIIO, Save_1D_GPU )
{
TestDistributedGridMPIIO<1,Cuda>::TestSave();
TestDistributedGridMPIIO<1,Devices::Cuda>::TestSave();
}
TEST( DistributedGridMPIIO, Save_2D_GPU )
{
TestDistributedGridMPIIO<2,Cuda>::TestSave();
TestDistributedGridMPIIO<2,Devices::Cuda>::TestSave();
}
TEST( DistributedGridMPIIO, Save_3D_GPU )
{
TestDistributedGridMPIIO<3,Cuda>::TestSave();
TestDistributedGridMPIIO<3,Devices::Cuda>::TestSave();
}
TEST( DistributedGridMPIIO, Load_1D_GPU )
{
TestDistributedGridMPIIO<1,Cuda>::TestLoad();
TestDistributedGridMPIIO<1,Devices::Cuda>::TestLoad();
}
TEST( DistributedGridMPIIO, Load_2D_GPU )
{
TestDistributedGridMPIIO<2,Cuda>::TestLoad();
TestDistributedGridMPIIO<2,Devices::Cuda>::TestLoad();
}
TEST( DistributedGridMPIIO, Load_3D_GPU )
{
TestDistributedGridMPIIO<3,Cuda>::TestLoad();
TestDistributedGridMPIIO<3,Devices::Cuda>::TestLoad();
}
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment