aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda/src/impl
diff options
context:
space:
mode:
authorAndrzej Janik <[email protected]>2024-12-01 03:36:16 +0000
committerAndrzej Janik <[email protected]>2024-12-01 03:36:16 +0000
commit1f1b770a511e4dd9116167bf1b02aae0df07ee3b (patch)
tree4ebd45adf1f88de1ad7e7507797dac12a7802a48 /zluda/src/impl
parent502b0c957e1fb58f5b6df678a26b8758349f8eb4 (diff)
downloadZLUDA-cuda-12-4.tar.gz
ZLUDA-cuda-12-4.zip
Fix more missing stuff in the host codecuda-12-4
Diffstat (limited to 'zluda/src/impl')
-rw-r--r--zluda/src/impl/memory.rs12
-rw-r--r--zluda/src/impl/mod.rs2
2 files changed, 12 insertions, 2 deletions
diff --git a/zluda/src/impl/memory.rs b/zluda/src/impl/memory.rs
index b23afa9..3843776 100644
--- a/zluda/src/impl/memory.rs
+++ b/zluda/src/impl/memory.rs
@@ -1,7 +1,9 @@
use hip_runtime_sys::*;
pub(crate) fn alloc_v2(dptr: *mut hipDeviceptr_t, bytesize: usize) -> hipError_t {
- unsafe { hipMalloc(dptr.cast(), bytesize) }
+ unsafe { hipMalloc(dptr.cast(), bytesize) }?;
+ // TODO: parametrize for non-Geekbench
+ unsafe { hipMemsetD8(*dptr, 0, bytesize) }
}
pub(crate) fn free_v2(dptr: hipDeviceptr_t) -> hipError_t {
@@ -23,3 +25,11 @@ pub(crate) fn copy_hto_d_v2(
) -> hipError_t {
unsafe { hipMemcpyHtoD(dst_device, src_host.cast_mut(), byte_count) }
}
+
+pub(crate) fn get_address_range_v2(
+ pbase: *mut hipDeviceptr_t,
+ psize: *mut usize,
+ dptr: hipDeviceptr_t,
+) -> hipError_t {
+ unsafe { hipMemGetAddressRange(pbase, psize, dptr) }
+}
diff --git a/zluda/src/impl/mod.rs b/zluda/src/impl/mod.rs
index 7b4afc5..766b4a5 100644
--- a/zluda/src/impl/mod.rs
+++ b/zluda/src/impl/mod.rs
@@ -162,7 +162,7 @@ impl<T: ZludaObject> LiveCheck<T> {
}
fn as_handle(&self) -> T::CudaHandle {
- unsafe { mem::transmute_copy(self) }
+ unsafe { mem::transmute_copy(&self) }
}
fn wrap(data: T) -> *mut Self {