gpt4 book ai didi

python - 如何将 FFI 数组作为 c_void 指针传递给 nalgebra 的 DMatrix2?

转载 作者:行者123 更新时间:2023-11-29 08:30:06 25 4
gpt4 key购买 nike

我有一个 C++ 数组形式的矩阵,想将其传递给用 Rust 编写的共享库函数。我有这样的东西

#![crate_type = "dylib"]

extern crate libc;
use libc::c_void;

extern crate nalgebra as na;
use na::DMatrix2;

#[no_mangle]
pub extern "C" fn rust_fn(p_data: *const c_void, sizex: usize, sizey: usize) {
let matrix = DMatrix2::from_row_vector(sizey, sizex, p_data);
// Do something usefull with the matrix
}

这不会编译,因为我将 c_void 传递给 from_row_vector()

我怎样才能正确地做到这一点?

矩阵是一个 double 组,但我试图保持接口(interface)的通用性,这样我也可以调用函数,例如 python 。

我不想在从函数返回时释放矩阵(我想借用,而不是拥有矩阵)。

最佳答案

您可以使用 std::slice::from_raw_parts 获取切片:

let slice = std::slice::from_raw_parts(p_data, sizex*sizey);

要确保指针类型匹配,您可以将参数列表中的 p_data 类型更改为 *const N where N 是您在矩阵中使用的类型,或者使用像 p_data as *const N 这样的强制转换。

关于python - 如何将 FFI 数组作为 c_void 指针传递给 nalgebra 的 DMatrix2?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36809329/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com