Intel® C++ Compiler 16.0 User and Reference Guide

omp target teams distribute simd

Creates a device data environment and then executes the construct on that device. It also specifies that loop iterations will be shared among the master threads of all thread teams in a league created by a teams construct. It will be executed concurrently using SIMD instructions. This pragma only applies to Intel® MIC Architecture.

Syntax

#pragma omp target teams distribute simd[clause, clause, ...]

for-loops

Arguments

clause

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

Description

This pragma is a shortcut for specifying a target construct containing a teams distribute simd construct.