Lines Matching full:linear
9 !$omp distribute parallel do simd linear(i)
23 !ERROR: Variable 'j' not allowed in LINEAR clause, only loop iterator can be specified in LINEAR clause of a construct combined with DISTRIBUTE
24 !$omp distribute parallel do simd linear(j)
34 !ERROR: Variable 'j' not allowed in LINEAR clause, only loop iterator can be specified in LINEAR clause of a construct combined with DISTRIBUTE
35 !ERROR: Variable 'b' not allowed in LINEAR clause, only loop iterator can be specified in LINEAR clause of a construct combined with DISTRIBUTE
36 !$omp distribute parallel do simd linear(j) linear(b)
46 !ERROR: Variable 'j' not allowed in LINEAR clause, only loop iterator can be specified in LINEAR clause of a construct combined with DISTRIBUTE
47 !ERROR: Variable 'b' not allowed in LINEAR clause, only loop iterator can be specified in LINEAR clause of a construct combined with DISTRIBUTE
48 !$omp distribute parallel do simd linear(j, b)
57 !ERROR: Variable 'j' not allowed in LINEAR clause, only loop iterator can be specified in LINEAR clause of a construct combined with DISTRIBUTE
58 !$omp distribute simd linear(i,j)
67 !ERROR: Variable 'j' not allowed in LINEAR clause, only loop iterator can be specified in LINEAR clause of a construct combined with DISTRIBUTE
68 !$omp distribute simd linear(i,j) collapse(1)
77 !$omp distribute simd linear(i,j) collapse(2)