From d5716971903a344ec5eacf2b9f0263c6f37bc66c Mon Sep 17 00:00:00 2001 From: Rahul Garg Date: Tue, 8 Aug 2017 09:13:12 +0530 Subject: [PATCH] docs update for memcpytosymbol support [ROCm/hip commit: eb25bd72dbd60ad94d6d6e4224f6d20890f91ca3] --- projects/hip/docs/markdown/hip_faq.md | 1 - projects/hip/docs/markdown/hip_porting_guide.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/hip/docs/markdown/hip_faq.md b/projects/hip/docs/markdown/hip_faq.md index ddf70f2875..b92ae512c5 100644 --- a/projects/hip/docs/markdown/hip_faq.md +++ b/projects/hip/docs/markdown/hip_faq.md @@ -56,7 +56,6 @@ At a high-level, the following features are not supported: - CUDA Driver API - CUDA IPC Functions (Under Development) - CUDA array, mipmappedArray and pitched memory -- MemcpyToSymbol functions - Queue priority controls See the [API Support Table](CUDA_Runtime_API_functions_supported_by_HIP.md) for more detailed information. diff --git a/projects/hip/docs/markdown/hip_porting_guide.md b/projects/hip/docs/markdown/hip_porting_guide.md index 84887fd512..12ec931f2a 100644 --- a/projects/hip/docs/markdown/hip_porting_guide.md +++ b/projects/hip/docs/markdown/hip_porting_guide.md @@ -405,7 +405,7 @@ Code should not assume a warp size of 32 or 64. See [Warp Cross-Lane Functions] ## memcpyToSymbol -HIP support for hipMemCpyToSymbol is complete. This feature allows a kernel +HIP support for hipMemcpyToSymbol is complete. This feature allows a kernel to define a device-side data symbol which can be accessed on the host side. The symbol can be in __constant or device space.