blob: d1a135f7c698f27861bd70b43c7e1a24f3336d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use hip_runtime_sys::*;
pub(crate) unsafe fn get_limit(pvalue: *mut usize, limit: hipLimit_t) -> hipError_t {
unsafe { hipDeviceGetLimit(pvalue, limit) }
}
pub(crate) fn set_limit(limit: hipLimit_t, value: usize) -> hipError_t {
unsafe { hipDeviceSetLimit(limit, value) }
}
pub(crate) fn synchronize() -> hipError_t {
unsafe { hipDeviceSynchronize() }
}
|