Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Removing extra logging from faiss mr #463

Merged
merged 1 commit into from
Jan 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions cpp/include/raft/spatial/knn/faiss_mr.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,13 +431,10 @@ class RmmGpuResourcesImpl : public GpuResources {
if (allocLogging_) { std::cout << "RmmGpuResources: dealloc " << req.toString() << "\n"; }

if (req.space == MemorySpace::Temporary) {
std::cout << "dealloc Temporary" << std::endl;
tempMemory_[device]->deallocMemory(device, req.stream, req.size, p);
} else if (req.space == MemorySpace::Device) {
std::cout << "dealloc Device" << std::endl;
cmr->deallocate(p, req.size, req.stream);
} else if (req.space == MemorySpace::Unified) {
std::cout << "dealloc Unified" << std::endl;
mmr->deallocate(p, req.size, req.stream);
} else {
FAISS_ASSERT_FMT(false, "unknown MemorySpace %d", (int)req.space);
Expand Down