diff options
author | Andrzej Janik <[email protected]> | 2024-12-01 03:36:16 +0000 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2024-12-01 03:36:16 +0000 |
commit | 1f1b770a511e4dd9116167bf1b02aae0df07ee3b (patch) | |
tree | 4ebd45adf1f88de1ad7e7507797dac12a7802a48 /zluda/src/impl | |
parent | 502b0c957e1fb58f5b6df678a26b8758349f8eb4 (diff) | |
download | ZLUDA-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.rs | 12 | ||||
-rw-r--r-- | zluda/src/impl/mod.rs | 2 |
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 { |