#[unsafe(no_mangle)]pub extern "C" fn assemble_laplace_kernel_f32(
source_ptr: *const f32,
target_ptr: *const f32,
result_ptr: *mut f32,
nsources: usize,
ntargets: usize,
num_threads: usize,
)Expand description
Assemble the Laplace kernel (single precision version).
ยงArguments
source_ptr- Pointer to a(3, nsources)array of sources.target_ptr- Pointer to a(3, ntargets)array of targets.result_ptr- Pointer to an existing(ntargets, nsources)array that stores the result.nsources- Number of sources.ntargets- Number of targets.num_threads- Number of threads to use