Skip to content

Commit 1169bf1

Browse files
authored
Merge pull request #1917 from ericniebler/fix-cuda-bulk-opstate
fix incomplete edit from the removal of ADL hacks
2 parents d81c734 + 7765d8b commit 1169bf1

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

include/nvexec/stream/bulk.cuh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,8 @@ namespace nv::execution::_strm
304304
: opstate_base_t<CvSender, Receiver, Shape, Fun>(
305305
static_cast<CvSender&&>(__sndr),
306306
static_cast<Receiver&&>(__rcvr),
307-
[&](_strm::opstate_base<Receiver>&)
308-
-> STDEXEC::__t<receiver<CvSender, Receiver, Shape, Fun>>
309-
{ return STDEXEC::__t<receiver<CvSender, Receiver, Shape, Fun>>(shape, fun, *this); },
307+
[&](_strm::opstate_base<Receiver>&) -> receiver<CvSender, Receiver, Shape, Fun>
308+
{ return receiver<CvSender, Receiver, Shape, Fun>(shape, fun, *this); },
310309
ctx)
311310
, num_devices_(num_devices)
312311
, streams_(new cudaStream_t[num_devices_])

0 commit comments

Comments
 (0)