Intel® C++ Compiler 16.0 User and Reference Guide

omp distribute parallel for simd

Specifies a loop that will be executed in parallel by multiple threads that are members of multiple teams. It will be executed concurrently using SIMD instructions.

Syntax

#pragma omp distribute parallel for simd[clause{[, clause, ...]]

for loops

Arguments

clause

Can be any clause accepted by the distribute or parallel for simd constructs with identical meanings and restrictions.

Description

This pragma specifies a loop that will be executed in parallel by multiple threads that are members of multiple teams. It will be executed concurrently using SIMD instructions.