Skip to content

Fix git push error for protected CLA branch #1904

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Functions in the `fast_math` namespace have lower accuracy, support only single-

## Syntax

```
```cpp
namespace fast_math;
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Provides the [get_texture](concurrency-graphics-direct3d-namespace-functions.md#

## Syntax

```
```cpp
namespace direct3d;
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The graphics namespace provides types and functions that are designed for graphi

## Syntax

```
```cpp
namespace graphics;
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Provides classes and functions that accelerate the execution of C++ code on data

## Syntax

```
```cpp
namespace Concurrency;
```

Expand Down
4 changes: 2 additions & 2 deletions docs/parallel/amp/reference/double-4-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ class double_4;

**Namespace:** Concurrency::graphics

## <a name="ctor"></a> double_4
## <a name="ctor"></a> double_4

Default constructor, initializes all elements with 0.

Expand Down Expand Up @@ -395,7 +395,7 @@ The value for initialization.
*_Other*<br/>
The object used to initialize.

## <a name="double_4__size"></a> size
## <a name="double_4__size"></a> size

```cpp
static const int size = 4;
Expand Down
10 changes: 5 additions & 5 deletions docs/parallel/amp/reference/float-4-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Represents a short vector of four floats.

## Syntax

```
```cpp
class float_4;
```

Expand Down Expand Up @@ -331,11 +331,11 @@ class float_4;

**Namespace:** Concurrency::graphics

## <a name="ctor"></a> float_4
## <a name="ctor"></a> float_4

Default constructor, initializes all elements with 0.

```
```cpp
float_4() restrict(amp,
cpu);

Expand Down Expand Up @@ -395,9 +395,9 @@ The value for initialization.
*_Other*<br/>
The object used to initialize.

## <a name="float_4__size"></a> size
## <a name="float_4__size"></a> size

```
```cpp
static const int size = 4;
```

Expand Down
4 changes: 2 additions & 2 deletions docs/parallel/amp/reference/norm-3-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class norm_3;

Default constructor, initializes all elements with 0.

## Syntax
### Syntax

```cpp
norm_3() restrict(amp,cpu);
Expand Down Expand Up @@ -182,7 +182,7 @@ explicit inline norm_3(
) restrict(amp,cpu);
```

#### Parameters
### Parameters

*_V0*<br/>
The value to initialize element 0.
Expand Down
33 changes: 17 additions & 16 deletions docs/parallel/amp/reference/tiled-index-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ The length of the least significant dimension.

Initializes a new instance of the `tiled_index` class.

## Syntax
### Syntax

```cpp
tiled_index(
Expand All @@ -107,7 +107,7 @@ tiled_index(
const tiled_index& _Other ) restrict(amp,cpu);
```

#### Parameters
### Parameters

*_Global*<br/>
The global [index](index-class.md) of the constructed `tiled_index`.
Expand All @@ -127,7 +127,7 @@ The [tile_barrier](tile-barrier-class.md) object of the constructed `tiled_index
*_Other*<br/>
The `tile_index` object to be copied to the constructed `tiled_index`.

## Overloads
### Overloads

|||
|-|-|
Expand All @@ -139,21 +139,21 @@ The `tile_index` object to be copied to the constructed `tiled_index`.

Returns an [extent](extent-class.md) object that has the values of the `tiled_index` template arguments `_Dim0`, `_Dim1`, and `_Dim2`.

## Syntax
### Syntax

```cpp
extent<rank> get_tile_extent()restrict(amp,cpu);
```

## Return Value
### Return Value

An `extent` object that has the values of the `tiled_index` template arguments `_Dim0`, `_Dim1`, and `_Dim2`.

## <a name="tiled_index__barrier"></a> barrier

Stores a [tile_barrier](tile-barrier-class.md) object that represents a barrier in the current tile of threads.

## Syntax
### Syntax

```cpp
const tile_barrier barrier;
Expand All @@ -163,7 +163,7 @@ const tile_barrier barrier;

Stores an [index](index-class.md) object of rank 1, 2, or 3 that represents the global index of an object.

## Syntax
### Syntax

```cpp
const index<rank> global;
Expand All @@ -173,7 +173,7 @@ const index<rank> global;

Stores an [index](index-class.md) object of rank 1, 2, or 3 that represents the relative index in the current tile of a [tiled_extent](tiled-extent-class.md) object.

## Syntax
### Syntax

```cpp
const index<rank> local;
Expand All @@ -183,7 +183,7 @@ const index<rank> local;

Stores the rank of the `tiled_index` object.

## Syntax
### Syntax

```cpp
static const int rank = _Rank;
Expand All @@ -193,7 +193,7 @@ static const int rank = _Rank;

Stores an [index](index-class.md) object of rank 1, 2, or 3 that represents the coordinates of the current tile of a [tiled_extent](tiled-extent-class.md) object.

## Syntax
### Syntax

```cpp
const index<rank> tile;
Expand All @@ -203,7 +203,7 @@ const index<rank> tile;

Stores the length of the most significant dimension.

## Syntax
### Syntax

```cpp
static const int tile_dim0 = _Dim0;
Expand All @@ -213,7 +213,7 @@ static const int tile_dim0 = _Dim0;

Stores the length of the next-to-most significant dimension.

## Syntax
### Syntax

```cpp
static const int tile_dim1 = _Dim1;
Expand All @@ -223,7 +223,7 @@ static const int tile_dim1 = _Dim1;

Stores the length of the least significant dimension.

## Syntax
### Syntax

```cpp
static const int tile_dim2 = _Dim2;
Expand All @@ -233,16 +233,17 @@ static const int tile_dim2 = _Dim2;

Stores an [index](index-class.md) object of rank 1, 2, or 3 that represents the global coordinates of the origin of the current tile within a [tiled_extent](tiled-extent-class.md) object.

## Syntax
### Syntax

```cpp
const index<rank> tile_origin
```

## <a name="tile_extent"></a> tile_extent
Gets an [extent](extent-class.md) object that has the values of the `tiled_index` template arguments `tiled_index` template arguments `_Dim0`, `_Dim1`, and `_Dim2`.

## Syntax
Gets an [extent](extent-class.md) object that has the values of the `tiled_index` template arguments `tiled_index` template arguments `_Dim0`, `_Dim1`, and `_Dim2`.

### Syntax

```cpp
__declspec(property(get= get_tile_extent)) extent<rank> tile_extent;
Expand Down
2 changes: 1 addition & 1 deletion docs/parallel/amp/reference/uint-4-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ explicit inline uint_4(
) restrict(amp,cpu);
```

#### Parameters
### Parameters

*_V0*<br/>
The value to initialize element 0.
Expand Down
10 changes: 5 additions & 5 deletions docs/parallel/amp/reference/unorm-4-class.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Represents a short vector of four unsigned normal numbers.

## Syntax

```
```cpp
class unorm_4;
```

Expand Down Expand Up @@ -331,11 +331,11 @@ class unorm_4;

**Namespace:** Concurrency::graphics

## <a name="ctor"></a> unorm_4
## <a name="ctor"></a> unorm_4

Default constructor, initializes all elements with 0.

```
```cpp
unorm_4() restrict(amp,
cpu);

Expand Down Expand Up @@ -406,9 +406,9 @@ The value for initialization.
*_Other*<br/>
The object used to initialize.

## <a name="unorm_4__size"></a> size
## <a name="unorm_4__size"></a> size

```
```cpp
static const int size = 4;
```

Expand Down
Loading