SWDEV-444835 - Merge changes in hip made in 6.1- to staging

Change-Id: I2ebebc7655f804a2192153ad1e07069ec2394c98


[ROCm/hip commit: 9eb37e9947]
Este commit está contenido en:
jujiang
2024-02-28 14:38:33 -05:00
padre 5f6ae77a1e
commit 5495cd7892
Se han modificado 7 ficheros con 15 adiciones y 15 borrados
+1 -1
Ver fichero
@@ -681,7 +681,7 @@ Users need to include assert.h to use assert. For assert to work in both device
HIP provides the function abort() which can be used to terminate the application when terminal failures are detected. It is implemented using the `__builtin_trap()` function.
This function produces the effects of using `asm("trap")` in the CUDA code.
This function produces a similar effect of using `asm("trap")` in the CUDA code.
Note, in HIP, the function terminates the entire application, while in CUDA, `asm("trap")`only terminates the dispatch and the application continues to run.