From da199e07fa7eb9b4096dc71ead40e53bed2e4d09 Mon Sep 17 00:00:00 2001 From: ywwu928 Date: Wed, 21 Aug 2024 16:51:39 -0500 Subject: [PATCH] use cerr instead of cout --- microbench/bfs/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/microbench/bfs/src/main.cpp b/microbench/bfs/src/main.cpp index 1f183c0a..6d6d2224 100644 --- a/microbench/bfs/src/main.cpp +++ b/microbench/bfs/src/main.cpp @@ -93,7 +93,7 @@ void HBMainMDLCSR(pando::Vector srcVertices, std::uint64_t numVer #ifdef DEBUG_PRINTS #ifdef PANDO_RT_USE_BACKEND_DRVX - std::cout << "Cycle before graph construction: " << DrvAPI::cycle() << std::endl; + std::cerr << "Cycle before graph construction: " << DrvAPI::cycle() << std::endl; #endif #endif @@ -102,7 +102,7 @@ void HBMainMDLCSR(pando::Vector srcVertices, std::uint64_t numVer #ifdef DEBUG_PRINTS #ifdef PANDO_RT_USE_BACKEND_DRVX - std::cout << "Cycle after graph construction: " << DrvAPI::cycle() << std::endl; + std::cerr << "Cycle after graph construction: " << DrvAPI::cycle() << std::endl; #endif #endif