We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85769b2 commit 2dd4bf6Copy full SHA for 2dd4bf6
test/plugin_test/cl_plugin_loader_test.c
@@ -22,6 +22,16 @@
22
#include <stddef.h>
23
#include <stdio.h>
24
25
+/*
26
+ * This test program uses loader components for portability (environment,
27
+ * library) in order to repeatedly load, initialize, and unload a plugin. The
28
+ * interface of the plugin is defined in `cl_plugin.h`. This interface define
29
+ * an initialization function and return results. A plugin that is linked to
30
+ * the OpenCL ICD Loader, and uses OpenCL functionalities in its initialization
31
+ * function, will allow checking that the loader initialization and
32
+ * deinitialization are working correctly.
33
+ */
34
+
35
int main(int argc, char *argv[]) {
36
(void)argc;
37
(void)argv;
0 commit comments