/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hip/checkouts/latest/include/hip/library_types.h Source File#

HIP Runtime API Reference: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hip/checkouts/latest/include/hip/library_types.h Source File
library_types.h
Go to the documentation of this file.
1 /*
2 Copyright (c) 2015 - 2023 Advanced Micro Devices, Inc. All rights reserved.
3 
4 Permission is hereby granted, free of charge, to any person obtaining a copy
5 of this software and associated documentation files (the "Software"), to deal
6 in the Software without restriction, including without limitation the rights
7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 copies of the Software, and to permit persons to whom the Software is
9 furnished to do so, subject to the following conditions:
10 
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
13 
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 THE SOFTWARE.
21 */
22 
23 #ifndef HIP_INCLUDE_HIP_LIBRARY_TYPES_H
24 #define HIP_INCLUDE_HIP_LIBRARY_TYPES_H
25 
26 #if !defined(__HIPCC_RTC__)
27 #include <hip/hip_common.h>
28 #endif
29 
30 #if defined(__HIP_PLATFORM_AMD__) && !defined(__HIP_PLATFORM_NVIDIA__)
31 
32 typedef enum hipDataType {
33  HIP_R_32F = 0,
34  HIP_R_64F = 1,
35  HIP_R_16F = 2,
36  HIP_R_8I = 3,
37  HIP_C_32F = 4,
38  HIP_C_64F = 5,
39  HIP_C_16F = 6,
40  HIP_C_8I = 7,
41  HIP_R_8U = 8,
42  HIP_C_8U = 9,
43  HIP_R_32I = 10,
44  HIP_C_32I = 11,
45  HIP_R_32U = 12,
46  HIP_C_32U = 13,
47  HIP_R_16BF = 14,
48  HIP_C_16BF = 15,
49  HIP_R_4I = 16,
50  HIP_C_4I = 17,
51  HIP_R_4U = 18,
52  HIP_C_4U = 19,
53  HIP_R_16I = 20,
54  HIP_C_16I = 21,
55  HIP_R_16U = 22,
56  HIP_C_16U = 23,
57  HIP_R_64I = 24,
58  HIP_C_64I = 25,
59  HIP_R_64U = 26,
60  HIP_C_64U = 27,
61  // HIP specific Data Types
63  HIP_R_8F_E5M2_FNUZ = 1001
65 
66 typedef enum hipLibraryPropertyType {
71 
72 #elif !defined(__HIP_PLATFORM_AMD__) && defined(__HIP_PLATFORM_NVIDIA__)
73 #include "library_types.h"
74 #else
75 #error("Must define exactly one of __HIP_PLATFORM_AMD__ or __HIP_PLATFORM_NVIDIA__");
76 #endif
77 
78 #endif
hipLibraryPropertyType
Definition: library_types.h:66
@ HIP_LIBRARY_MAJOR_VERSION
Definition: library_types.h:67
@ HIP_LIBRARY_MINOR_VERSION
Definition: library_types.h:68
@ HIP_LIBRARY_PATCH_LEVEL
Definition: library_types.h:69
hipDataType
Definition: library_types.h:32
@ HIP_C_4I
Definition: library_types.h:50
@ HIP_C_64I
Definition: library_types.h:58
@ HIP_C_16U
Definition: library_types.h:56
@ HIP_C_32U
Definition: library_types.h:46
@ HIP_C_64F
Definition: library_types.h:38
@ HIP_R_4U
Definition: library_types.h:51
@ HIP_R_64F
Definition: library_types.h:34
@ HIP_R_32F
Definition: library_types.h:33
@ HIP_R_16U
Definition: library_types.h:55
@ HIP_C_64U
Definition: library_types.h:60
@ HIP_R_8U
Definition: library_types.h:41
@ HIP_R_16F
Definition: library_types.h:35
@ HIP_R_8I
Definition: library_types.h:36
@ HIP_C_16BF
Definition: library_types.h:48
@ HIP_C_16F
Definition: library_types.h:39
@ HIP_R_8F_E5M2_FNUZ
Definition: library_types.h:63
@ HIP_R_64U
Definition: library_types.h:59
@ HIP_C_8I
Definition: library_types.h:40
@ HIP_R_4I
Definition: library_types.h:49
@ HIP_R_16I
Definition: library_types.h:53
@ HIP_C_32I
Definition: library_types.h:44
@ HIP_C_4U
Definition: library_types.h:52
@ HIP_C_8U
Definition: library_types.h:42
@ HIP_R_8F_E4M3_FNUZ
Definition: library_types.h:62
@ HIP_R_16BF
Definition: library_types.h:47
@ HIP_C_32F
Definition: library_types.h:37
@ HIP_R_32I
Definition: library_types.h:43
@ HIP_R_32U
Definition: library_types.h:45
@ HIP_R_64I
Definition: library_types.h:57
@ HIP_C_16I
Definition: library_types.h:54