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 398aa20 commit 599a195Copy full SHA for 599a195
sycl-fusion/passes/kernel-fusion/SYCLKernelFusion.cpp
@@ -405,7 +405,8 @@ Error SYCLKernelFusion::fuseKernel(
405
// There is another parameter with identical value. Use the existing
406
// mapping of that other parameter and do not add this argument to the
407
// fused function.
408
- ParamMapping.insert({{FuncIndex, ParamIndex}, IdenticalIdx});
+ ParamMapping.insert(
409
+ {{FuncIndex, ParamIndex}, static_cast<unsigned>(IdenticalIdx)});
410
++ParamFront;
411
UsedArgsMask.push_back(false);
412
} else {
0 commit comments