Skip to content

Commit a66a684

Browse files
authored
Fix multi_gpu_context's use of continuation_kernel
1 parent d944106 commit a66a684

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)