File tree Expand file tree Collapse file tree
clang/lib/DPCT/RulesLangLib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -846,7 +846,6 @@ std::string CubRule::getOpRepl(const Expr *Operator) {
846846 auto processOperatorExpr = [&](const Expr *Obj) {
847847 std::string OpType = DpctGlobalInfo::getUnqualifiedTypeName (
848848 Obj->getType ().getCanonicalType ());
849- std::cout << " 1OpType:" << OpType << std::endl;
850849 if (OpType == " cub::Sum" || OpType == " cuda::std::plus<void>" ) {
851850 OpRepl = MapNames::getClNamespace () + " plus<>()" ;
852851 } else if (OpType == " cub::Max" || OpType == " cuda::maximum<void>" ) {
@@ -867,7 +866,6 @@ std::string CubRule::getOpRepl(const Expr *Operator) {
867866 return OpRepl;
868867 std::string OpType = DpctGlobalInfo::getUnqualifiedTypeName (
869868 D->getType ().getCanonicalType ());
870- std::cout << " 2OpType:" << OpType << std::endl;
871869 if (OpType == " cub::Sum" || OpType == " cub::Max" ||
872870 OpType == " cub::Min" || OpType == " cuda::std::plus<void>" ||
873871 OpType == " cuda::maximum<void>" ||
You can’t perform that action at this time.
0 commit comments