Skip to content

Commit baef440

Browse files
committed
Fix
Signed-off-by: Jiang, Zhiwei <zhiwei.jiang@intel.com>
1 parent b12a054 commit baef440

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

clang/lib/DPCT/RulesLangLib/CUBAPIMigration.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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>" ||

0 commit comments

Comments
 (0)