We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb17bb2 commit cb7197eCopy full SHA for cb7197e
third_party/amd/backend/driver.c
@@ -11,6 +11,10 @@
11
// code should substitute the search path placeholder.
12
static const char *hipLibSearchPaths[] = {"/*py_libhip_search_path*/"};
13
14
+// The list of HIP dynamic library symbols and their signature we are interested
15
+// in this file.
16
+// |FOR_EACH_ERR_FN| is a macro to process APIs that return hipError_t;
17
+// |FOR_EACH_STR_FN| is a macro to process APIs that return const char *.
18
#define HIP_SYMBOL_LIST(FOR_EACH_ERR_FN, FOR_EACH_STR_FN) \
19
FOR_EACH_STR_FN(hipGetErrorString, hipError_t hipError) \
20
FOR_EACH_ERR_FN(hipGetDeviceProperties, hipDeviceProp_t *prop, int deviceId) \
0 commit comments