You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clauses followed by expressions like simdlen() is merged as below: #pragma omp simd simdlen(8) simdlen(128) (this format is illegal) result: #pragma omp simd simdlen(8,128)
ompparser will give a message: "Cannot have two simdlen clause for the directive, ignored" and then gives the output.
The text was updated successfully, but these errors were encountered:
Clauses followed by expressions like simdlen() is merged as below:
#pragma omp simd simdlen(8) simdlen(128) (this format is illegal)
result: #pragma omp simd simdlen(8,128)
ompparser will give a message: "Cannot have two simdlen clause for the directive, ignored" and then gives the output.
The text was updated successfully, but these errors were encountered: