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 25a99cc commit ee6ea78Copy full SHA for ee6ea78
cpp/tensorrt_llm/batch_manager/dataTransceiver.cpp
@@ -381,7 +381,6 @@ class CacheSender::Impl
381
void handleAsyncSend(AsyncSendResource& resource)
382
{
383
tensorrt_llm::common::setThreadName("dataTransAsyncSend");
384
- TLLM_LOG_INFO(mpi::MpiComm::world().getRank(), "Start handling async send");
385
while (!resource.mTerminate)
386
387
Response resp;
@@ -401,7 +400,6 @@ class CacheSender::Impl
401
400
resp = std::move(resource.mSendQueue.front());
402
resource.mSendQueue.pop_front();
403
}
404
- // TLLM_LOG_INFO(mpi::MpiComm::world().getRank(), "Start sending request %zu", resp.mRequest->mRequestId);
405
sendAndRemoveResponse(resp.mRequest->mRequestId, std::move(resp));
406
407
0 commit comments