mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-19 16:04:44 +00:00
35 lines
968 B
Rust
35 lines
968 B
Rust
use hip_runtime_sys::*;
|
|
|
|
pub(crate) fn alloc_v2(dptr: *mut hipDeviceptr_t, bytesize: usize) -> hipError_t {
|
|
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 {
|
|
unsafe { hipFree(dptr.0) }
|
|
}
|
|
|
|
pub(crate) fn copy_dto_h_v2(
|
|
dst_host: *mut ::core::ffi::c_void,
|
|
src_device: hipDeviceptr_t,
|
|
byte_count: usize,
|
|
) -> hipError_t {
|
|
unsafe { hipMemcpyDtoH(dst_host, src_device, byte_count) }
|
|
}
|
|
|
|
pub(crate) fn copy_hto_d_v2(
|
|
dst_device: hipDeviceptr_t,
|
|
src_host: *const ::core::ffi::c_void,
|
|
byte_count: usize,
|
|
) -> 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) }
|
|
}
|