File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 52
52
53
53
#define _PI_STRING_HELPER (a ) #a
54
54
#define _PI_CONCAT (a, b ) _PI_STRING_HELPER(a.b)
55
+ #define _PI_TRIPLE_CONCAT (a, b, c ) _PI_STRING_HELPER(a.b.c)
56
+
55
57
#define _PI_H_VERSION_STRING \
56
58
_PI_CONCAT (_PI_H_VERSION_MAJOR, _PI_H_VERSION_MINOR)
57
59
Original file line number Diff line number Diff line change 20
20
21
21
#define _PI_CUDA_PLUGIN_VERSION 1
22
22
23
- #define _PI_TRIPLE_CONCAT (a, b, c ) _PI_STRING_HELPER(a.b.c)
24
-
25
23
#define _PI_CUDA_PLUGIN_VERSION_STRING \
26
24
_PI_TRIPLE_CONCAT (_PI_H_VERSION_MAJOR, _PI_H_VERSION_MINOR, \
27
25
_PI_CUDA_PLUGIN_VERSION)
Original file line number Diff line number Diff line change @@ -451,7 +451,7 @@ static void initializePlugins(std::vector<plugin> &Plugins) {
451
451
if (trace (TraceLevel::PI_TRACE_BASIC))
452
452
std::cerr << " SYCL_PI_TRACE[basic]: "
453
453
<< " Plugin found and successfully loaded: "
454
- << PluginNames[I].first << " ["
454
+ << PluginNames[I].first << " [ PluginVersion: "
455
455
<< Plugins[I].getPiPlugin ().PluginVersion << " ]" << std::endl;
456
456
}
457
457
You can’t perform that action at this time.
0 commit comments