blob: 61cb92e161443a12e6e986a4c4e01bb204d710a1 (
plain)
1
2
3
4
5
6
7
8
9
|
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) }
}
|