Skip to content

Commit 1560836

Browse files
committed
mention when AMP is becoming deprecated.
1 parent 3ff70e4 commit 1560836

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/parallel/amp/cpp-amp-overview.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ ms.assetid: 9e593b06-6e3c-43e9-8bae-6d89efdd39fc
88
# C++ AMP Overview
99

1010
> [!NOTE]
11-
> C++ AMP headers are deprecated. Including any AMP headers will generate build errors. To Silence the errors, define "_SILENCE_AMP_DEPRECATION_WARNINGS" before including the headers.
11+
> C++ AMP headers are deprecated, starting with Visual Studio 2022 version 17.0.
12+
> Including any AMP headers will generate build errors. To Silence the errors, define "_SILENCE_AMP_DEPRECATION_WARNINGS" before including the headers.
1213
1314
C++ Accelerated Massive Parallelism (C++ AMP) accelerates execution of C++ code by taking advantage of data-parallel hardware such as a graphics processing unit (GPU) on a discrete graphics card. By using C++ AMP, you can code multi-dimensional data algorithms so that execution can be accelerated by using parallelism on heterogeneous hardware. The C++ AMP programming model includes multidimensional arrays, indexing, memory transfer, tiling, and a mathematical function library. You can use C++ AMP language extensions to control how data is moved from the CPU to the GPU and back, so that you can improve performance.
1415

0 commit comments

Comments
 (0)