Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kchristin22 committed Sep 21, 2024
1 parent 99efd46 commit a092392
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/clad/Differentiator/Differentiator.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ CUDA_HOST_DEVICE T push(tape<T>& to, ArgsT... val) {
for (size_t i = sizeof...(args); i < totalArgs; ++i)
argPtrs[i] = &null_param;

cudaLaunchKernel((void*)f, grid, block, argPtrs.data(), shared_mem, stream);
cudaLaunchKernel((void*)f, grid, block, argPtrs.data(), shared_mem,
stream);
return return_type_t<F>();
} else {
return f(static_cast<Args>(args)..., static_cast<Rest>(nullptr)...);
Expand Down

0 comments on commit a092392

Please sign in to comment.