File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
llvm/tools/sycl-post-link Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -103,10 +103,12 @@ static void collectKernelsSet(
103
103
}
104
104
}
105
105
106
- // Input parameter KernelsSet is a map containing groups of kernels with same
107
- // values in the sycl-module-id attribute.
108
- // ResSymbolsLists vector is output parameter.
109
- // Collects set of kernel names for each group of kernels.
106
+ // Input parameter KernelModuleMap is a map containing groups of kernels with
107
+ // same values of the sycl-module-id attribute. ResSymbolsLists is a vector of
108
+ // kernel name lists. Each vector element is a string with kernel names from the
109
+ // same module separated by \n.
110
+ // The function saves names of kernels from one group to a single std::string
111
+ // and stores this string to the ResSymbolsLists vector.
110
112
static void collectSymbolsLists (
111
113
std::map<std::string, std::vector<Function *>> &KernelsSet,
112
114
std::vector<std::string> &ResSymbolsLists) {
You can’t perform that action at this time.
0 commit comments