Skip to content

Commit

Permalink
Fixing clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
coreylowman committed Aug 20, 2024
1 parent f178504 commit 8515f4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/driver/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1020,10 +1020,10 @@ pub unsafe fn launch_kernel(
///
/// 1. The cuda function must be a valid handle returned from a non-unloaded module.
/// 2. This is asynchronous, so the results of calling this function happen
/// at a later point after this function returns.
/// at a later point after this function returns.
/// 3. All parameters used for this kernel should have been allocated by stream (I think?)
/// 4. The cuda kernel has mutable access to every parameter, that means every parameter
/// can change at a later point after callign this function. *Even non-mutable references*.
/// can change at a later point after callign this function. *Even non-mutable references*.
#[inline]
pub unsafe fn launch_cooperative_kernel(
f: sys::CUfunction,
Expand Down

0 comments on commit 8515f4b

Please sign in to comment.