mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-14 17:57:39 +01:00
18 lines
258 B
C
18 lines
258 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
#pragma acc parallel vector_length (64)
|
|
{
|
|
#pragma acc loop worker
|
|
for (unsigned int i = 0; i < 32; i++)
|
|
#pragma acc loop vector
|
|
for (unsigned int j = 0; j < 64; j++)
|
|
;
|
|
}
|
|
|
|
return 0;
|
|
}
|