Skip to content

Commit

Permalink
Add a (?) for a generic formal type in cuBLAS
Browse files Browse the repository at this point in the history
---
Signed-off-by: Michael Ferguson <[email protected]>
  • Loading branch information
mppf committed Sep 13, 2023
1 parent 95ca479 commit bc7c765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gpu/interop/cuBLAS/cuBLAS.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module cuBLAS {
return gpu_ptr;
}

proc gpu_to_cpu(dst_ptr: c_ptr(void), src_ptr: DevicePtr, size: c_size_t){
proc gpu_to_cpu(dst_ptr: c_ptr(void), src_ptr: DevicePtr(?), size: c_size_t){
require "c_cublas.h", "c_cublas.o";
to_cpu(dst_ptr, src_ptr.val, size);
}
Expand Down

0 comments on commit bc7c765

Please sign in to comment.