Skip to content

Commit e81de62

Browse files
committed
More cleanup
1 parent a6810db commit e81de62

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

src/nccl/context.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#include <oomph/config.hpp>
1616

1717
// paths relative to backend
18-
#include <nccl_communicator.hpp>
19-
#include <../context_base.hpp>
20-
#include <region.hpp>
21-
#include "./request_queue.hpp"
18+
#include "../context_base.hpp"
19+
#include "nccl_communicator.hpp"
20+
#include "region.hpp"
21+
#include "request_queue.hpp"
2222

2323
namespace oomph
2424
{

src/request.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ namespace oomph
2424
bool
2525
send_request::is_ready() const noexcept
2626
{
27-
// std::cerr << "send_request::is_ready()\n";
2827
if (!m) return true;
2928
return m->is_ready();
3029
}
@@ -47,9 +46,7 @@ send_request::wait()
4746
bool
4847
recv_request::is_ready() const noexcept
4948
{
50-
// std::cerr << "recv_request::is_ready()\n";
5149
if (!m) return true;
52-
// std::cerr << "recv_request::is_ready, checking impl m->is_ready()\n";
5350
return m->is_ready();
5451
}
5552

@@ -86,7 +83,6 @@ recv_request::cancel()
8683
bool
8784
shared_recv_request::is_ready() const noexcept
8885
{
89-
// std::cerr << "shared_recv_request::is_ready()\n";
9086
if (!m) return true;
9187
return m->is_ready();
9288
}
@@ -124,7 +120,6 @@ shared_recv_request::cancel()
124120
bool
125121
send_multi_request::is_ready() const noexcept
126122
{
127-
// std::cerr << "send_multi_request::is_ready()\n";
128123
if (!m) return true;
129124
return (m->m_counter == 0);
130125
}

0 commit comments

Comments
 (0)