xref: /libCEED/backends/hip/ceed-hip-compile.cpp (revision d310b3d31eeeddd20725517a3a61881a36d919f0)
1 // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
2 // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3 //
4 // SPDX-License-Identifier: BSD-2-Clause
5 //
6 // This file is part of CEED:  http://github.com/ceed
7 
8 #include "ceed-hip-compile.h"
9 
10 #include <ceed/backend.h>
11 #include <ceed/ceed.h>
12 #include <ceed/jit-tools.h>
13 #include <hip/hiprtc.h>
14 #include <stdarg.h>
15 #include <string.h>
16 
17 #include <sstream>
18 
19 #include "ceed-hip-common.h"
20 
21 #define CeedChk_hiprtc(ceed, x)                                                                               \
22   do {                                                                                                        \
23     hiprtcResult result = static_cast<hiprtcResult>(x);                                                       \
24     if (result != HIPRTC_SUCCESS) return CeedError((ceed), CEED_ERROR_BACKEND, hiprtcGetErrorString(result)); \
25   } while (0)
26 
27 #define CeedCallHiprtc(ceed, ...)  \
28   do {                             \
29     int ierr_q_ = __VA_ARGS__;     \
30     CeedChk_hiprtc(ceed, ierr_q_); \
31   } while (0);
32 
33 //------------------------------------------------------------------------------
34 // Compile HIP kernel
35 //------------------------------------------------------------------------------
36 int CeedCompileHip(Ceed ceed, const char *source, hipModule_t *module, const CeedInt num_defines, ...) {
37   hipFree(0);  // Make sure a Context exists for hiprtc
38   hiprtcProgram prog;
39 
40   std::ostringstream code;
41 
42   // Add hip runtime include statement for generation if runtime < 40400000 (implies ROCm < 4.5)
43   int runtime_version;
44   CeedCallHip(ceed, hipRuntimeGetVersion(&runtime_version));
45   if (runtime_version < 40400000) {
46     code << "\n#include <hip/hip_runtime.h>\n";
47   }
48   // With ROCm 4.5, need to include these definitions specifically for hiprtc (but cannot include the runtime header)
49   else {
50     code << "#include <stddef.h>\n";
51     code << "#define __forceinline__ inline __attribute__((always_inline))\n";
52     code << "#define HIP_DYNAMIC_SHARED(type, var) extern __shared__ type var[];\n";
53   }
54 
55   // Kernel specific options, such as kernel constants
56   if (num_defines > 0) {
57     va_list args;
58     va_start(args, num_defines);
59     char *name;
60     int   val;
61     for (int i = 0; i < num_defines; i++) {
62       name = va_arg(args, char *);
63       val  = va_arg(args, int);
64       code << "#define " << name << " " << val << "\n";
65     }
66     va_end(args);
67   }
68 
69   // Standard libCEED definitions for HIP backends
70   char *jit_defs_path, *jit_defs_source;
71   CeedCallBackend(CeedGetJitAbsolutePath(ceed, "ceed/jit-source/hip/hip-jit.h", &jit_defs_path));
72   CeedCallBackend(CeedLoadSourceToBuffer(ceed, jit_defs_path, &jit_defs_source));
73   code << jit_defs_source;
74   code << "\n\n";
75   CeedCallBackend(CeedFree(&jit_defs_path));
76   CeedCallBackend(CeedFree(&jit_defs_source));
77 
78   // Non-macro options
79   const int   num_opts = 3;
80   const char *opts[num_opts];
81   opts[0] = "-default-device";
82   struct hipDeviceProp_t prop;
83   Ceed_Hip              *ceed_data;
84   CeedCallBackend(CeedGetData(ceed, (void **)&ceed_data));
85   CeedCallHip(ceed, hipGetDeviceProperties(&prop, ceed_data->device_id));
86   std::string arch_arg = "--gpu-architecture=" + std::string(prop.gcnArchName);
87   opts[1]              = arch_arg.c_str();
88   opts[2]              = "-munsafe-fp-atomics";
89 
90   // Add string source argument provided in call
91   code << source;
92 
93   // Create Program
94   CeedCallHiprtc(ceed, hiprtcCreateProgram(&prog, code.str().c_str(), NULL, 0, NULL, NULL));
95 
96   // Compile kernel
97   hiprtcResult result = hiprtcCompileProgram(prog, num_opts, opts);
98   if (result != HIPRTC_SUCCESS) {
99     size_t log_size;
100     CeedChk_hiprtc(ceed, hiprtcGetProgramLogSize(prog, &log_size));
101     char *log;
102     CeedCallBackend(CeedMalloc(log_size, &log));
103     CeedCallHiprtc(ceed, hiprtcGetProgramLog(prog, log));
104     return CeedError(ceed, CEED_ERROR_BACKEND, "%s\n%s", hiprtcGetErrorString(result), log);
105   }
106 
107   size_t ptx_size;
108   CeedCallHiprtc(ceed, hiprtcGetCodeSize(prog, &ptx_size));
109   char *ptx;
110   CeedCallBackend(CeedMalloc(ptx_size, &ptx));
111   CeedCallHiprtc(ceed, hiprtcGetCode(prog, ptx));
112   CeedCallHiprtc(ceed, hiprtcDestroyProgram(&prog));
113 
114   CeedCallHip(ceed, hipModuleLoadData(module, ptx));
115   CeedCallBackend(CeedFree(&ptx));
116 
117   return CEED_ERROR_SUCCESS;
118 }
119 
120 //------------------------------------------------------------------------------
121 // Get HIP kernel
122 //------------------------------------------------------------------------------
123 int CeedGetKernelHip(Ceed ceed, hipModule_t module, const char *name, hipFunction_t *kernel) {
124   CeedCallHip(ceed, hipModuleGetFunction(kernel, module, name));
125   return CEED_ERROR_SUCCESS;
126 }
127 
128 //------------------------------------------------------------------------------
129 // Run HIP kernel
130 //------------------------------------------------------------------------------
131 int CeedRunKernelHip(Ceed ceed, hipFunction_t kernel, const int grid_size, const int block_size, void **args) {
132   CeedCallHip(ceed, hipModuleLaunchKernel(kernel, grid_size, 1, 1, block_size, 1, 1, 0, NULL, args, NULL));
133   return CEED_ERROR_SUCCESS;
134 }
135 
136 //------------------------------------------------------------------------------
137 // Run HIP kernel for spatial dimension
138 //------------------------------------------------------------------------------
139 int CeedRunKernelDimHip(Ceed ceed, hipFunction_t kernel, const int grid_size, const int block_size_x, const int block_size_y, const int block_size_z,
140                         void **args) {
141   CeedCallHip(ceed, hipModuleLaunchKernel(kernel, grid_size, 1, 1, block_size_x, block_size_y, block_size_z, 0, NULL, args, NULL));
142   return CEED_ERROR_SUCCESS;
143 }
144 
145 //------------------------------------------------------------------------------
146 // Run HIP kernel for spatial dimension with shared memory
147 //------------------------------------------------------------------------------
148 int CeedRunKernelDimSharedHip(Ceed ceed, hipFunction_t kernel, const int grid_size, const int block_size_x, const int block_size_y,
149                               const int block_size_z, const int shared_mem_size, void **args) {
150   CeedCallHip(ceed, hipModuleLaunchKernel(kernel, grid_size, 1, 1, block_size_x, block_size_y, block_size_z, shared_mem_size, NULL, args, NULL));
151   return CEED_ERROR_SUCCESS;
152 }
153