added vmp_prepare_dblptr

This commit is contained in:
Jean-Philippe Bossuat
2025-01-31 15:39:08 +01:00
parent 7704e14d45
commit 0b8bf98b2a
6 changed files with 39 additions and 10 deletions

View File

@@ -68,7 +68,7 @@ unsafe extern "C" {
}
unsafe extern "C" {
pub fn vmp_prepare_contiguous(
pub unsafe fn vmp_prepare_contiguous(
module: *const MODULE,
pmat: *mut VMP_PMAT,
mat: *const i64,
@@ -78,10 +78,10 @@ unsafe extern "C" {
);
}
unsafe extern "C" {
pub fn vmp_prepare_dblptr(
pub unsafe fn vmp_prepare_dblptr(
module: *const MODULE,
pmat: *mut VMP_PMAT,
mat: *mut *const i64,
mat: *const *const i64,
nrows: u64,
ncols: u64,
tmp_space: *mut u8,