Skip to content
Snippets Groups Projects
Commit 6cb69d27 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing exceeding memory limit for unbounded

parent 499fa4b9
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,7 @@ void Test3D_unb_ghost_periodic(const Box<3,float> & domain, long int k)
{
Vcluster & v_cl = create_vcluster();
if ( v_cl.getProcessingUnits() > 24 )
if ( v_cl.getProcessingUnits() >= 24 )
return;
long int big_step = k / 30;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment