1 void foo(void)2 foo (void) 3 { 4 #pragma acc parallel loop tile (2, 3) 5 for (short i = 0; i < 10; ++i) 6 for (short j = 0; j < 10; ++j) 7 ; 8 } 9