Skip to content

Commit 3ff70e4

Browse files
committed
add more mentions that AMP is deprecated.
1 parent 27415fd commit 3ff70e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/overview/whats-new-cpp-docs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ For the latest C++ conformance status, see [C++ conformance improvements in Visu
4848
- [`assert Macro, _assert, _wassert`](../c-runtime-library/reference/assert-macro-assert-wassert.md) - Clarified assert behavior
4949
- [`vsnprintf_s, _vsnprintf_s, _vsnprintf_s_l, _vsnwprintf_s, _vsnwprintf_s_l`](../c-runtime-library/reference/vsnprintf-s-vsnprintf-s-vsnprintf-s-l-vsnwprintf-s-vsnwprintf-s-l.md) - Clarified return values
5050
- [`setlocale, _wsetlocale`](../c-runtime-library/reference/setlocale-wsetlocale.md) - Added C Runtime UTF-8 support info
51+
- [`C++ AMP Overview`](../parallel/amp/cpp-amp-overview.md) - Added note about C++ AMP deprecation.
5152

5253
## C/C++ preprocessor reference
5354

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

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

1010
> [!NOTE]
11-
> C++ AMP is deprecated, starting with Visual Studio 2022 version 17.0.
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.
1212
1313
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.
1414

0 commit comments

Comments
 (0)