Skip to content

Commit 8f00886

Browse files
authored
Merge pull request #1082 from NVIDIA/multi-gpu-fix
Fix `multi_gpu_context`'s use of `continuation_kernel`
2 parents d944106 + a66a684 commit 8f00886

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/nvexec/multi_gpu_context.cuh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ namespace nvexec {
6666
if (op.status_ == cudaSuccess) {
6767
continuation_kernel<<<1, 1, 0, op.stream_>>>(std::move(op.rec_), stdexec::set_value);
6868
} else {
69-
continuation_kernel<cudaError_t><<<1, 1, 0, op.stream_>>>(
69+
continuation_kernel<<<1, 1, 0, op.stream_>>>(
7070
std::move(op.rec_), stdexec::set_error, std::move(op.status_));
7171
}
7272
}

0 commit comments

Comments
 (0)