aboutsummaryrefslogtreecommitdiffhomepage
path: root/zluda_ml/src/impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'zluda_ml/src/impl.rs')
-rw-r--r--zluda_ml/src/impl.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/zluda_ml/src/impl.rs b/zluda_ml/src/impl.rs
index 35f3778..60e5e9d 100644
--- a/zluda_ml/src/impl.rs
+++ b/zluda_ml/src/impl.rs
@@ -1,4 +1,4 @@
-use crate::nvml::nvmlReturn_t;
+use cuda_types::nvml::nvmlReturn_t;
#[cfg(debug_assertions)]
pub(crate) fn unimplemented() -> nvmlReturn_t {
@@ -9,3 +9,9 @@ pub(crate) fn unimplemented() -> nvmlReturn_t {
pub(crate) fn unimplemented() -> nvmlReturn_t {
nvmlReturn_t::NVML_ERROR_NOT_SUPPORTED
}
+
+pub(crate) fn nvmlErrorString(
+ _result: cuda_types::nvml::nvmlReturn_t,
+) -> *const ::core::ffi::c_char {
+ c"".as_ptr()
+}