From e6a11cbddf990a016162ab441aaf239b1b027663 Mon Sep 17 00:00:00 2001 From: Julia Jiang Date: Tue, 25 Jul 2023 17:13:34 -0400 Subject: [PATCH] SWDEV-406233 - Add HIP new APIs in change log Change-Id: If966d1b053562c1489f241948cb01437bfe289b7 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fdab2e747..80856c8899 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,36 @@ Full documentation for HIP is available at [docs.amd.com](https://docs.amd.com/) ### Added - Added meta_group_size/rank for getting the number of tiles and rank of a tile in the partition +- Added new APIs supporting Windows only, under development on Linux + + - hipMallocMipmappedArray for allocating a mipmapped array on the device + + - hipFreeMipmappedArray for freeing a mipmapped array on the device + + - hipGetMipmappedArrayLevel for getting a mipmap level of a HIP mipmapped array + + - hipMipmappedArrayCreate for creating a mipmapped array + + - hipMipmappedArrayDestroy for destroy a mipmapped array + + - hipMipmappedArrayGetLevel for getting a mipmapped array on a mipmapped level + +- Added new HIP APIs, still under developement + + - hipGraphAddExternalSemaphoresWaitNode for creating a external semaphor wait node and adds it to a graph + + - hipGraphAddExternalSemaphoresSignalNode for creating a external semaphor signal node and adds it to a graph + + - hipGraphExternalSemaphoresSignalNodeSetParams for updating node parameters in the external semaphore signal node + - hipGraphExternalSemaphoresWaitNodeSetParams for updating node parameters in the external semaphore wait node + + - hipGraphExternalSemaphoresSignalNodeGetParams for returning external semaphore signal node params + + - hipGraphExternalSemaphoresWaitNodeGetParams for returning external semaphore wait node params + + - hipGraphExecExternalSemaphoresSignalNodeSetParams for updating node parameters in the external semaphore signal node in the given graphExec + + - hipGraphExecExternalSemaphoresWaitNodeSetParams for updating node parameters in the external semaphore wait node in the given graphExec ### Changed