From 32d0501c8f2db77f07a0e700cc8f8d8b0db485ce Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Wed, 2 Nov 2022 10:44:22 +0530 Subject: [PATCH] SWDEV-349226 - Add missing hipDataTypes (#3039) Change-Id: I3326f326aebe677a93a55ffd7b56b8f6402e0194 [ROCm/hip commit: bd4181a260a6a0115fd1d9dac948a72669886acf] --- projects/hip/include/hip/library_types.h | 34 +++++++++++++++++++----- 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/projects/hip/include/hip/library_types.h b/projects/hip/include/hip/library_types.h index 3e844e6bad..1088cd4c90 100644 --- a/projects/hip/include/hip/library_types.h +++ b/projects/hip/include/hip/library_types.h @@ -28,12 +28,34 @@ THE SOFTWARE. #if (defined(__HIP_PLATFORM_HCC__) || defined(__HIP_PLATFORM_AMD__)) && !(defined(__HIP_PLATFORM_NVCC__) || defined(__HIP_PLATFORM_NVIDIA__)) typedef enum hipDataType { - HIP_R_16F = 2, - HIP_R_32F = 0, - HIP_R_64F = 1, - HIP_C_16F = 6, - HIP_C_32F = 4, - HIP_C_64F = 5 + HIP_R_32F = 0, + HIP_R_64F = 1, + HIP_R_16F = 2, + HIP_R_8I = 3, + HIP_C_32F = 4, + HIP_C_64F = 5, + HIP_C_16F = 6, + HIP_C_8I = 7, + HIP_R_8U = 8, + HIP_C_8U = 9, + HIP_R_32I = 10, + HIP_C_32I = 11, + HIP_R_32U = 12, + HIP_C_32U = 13, + HIP_R_16BF = 14, + HIP_C_16BF = 15, + HIP_R_4I = 16, + HIP_C_4I = 17, + HIP_R_4U = 18, + HIP_C_4U = 19, + HIP_R_16I = 20, + HIP_C_16I = 21, + HIP_R_16U = 22, + HIP_C_16U = 23, + HIP_R_64I = 24, + HIP_C_64I = 25, + HIP_R_64U = 26, + HIP_C_64U = 27 } hipDataType; typedef enum hipLibraryPropertyType {