1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
use std::{mem::ManuallyDrop, path::Path, ptr, sync::Arc};
use singe_core::path_to_cstring;
use singe_cuda::{
context::Context as CudaContext,
stream::{BorrowedStream, Stream, StreamBinding},
};
use crate::{
error::{Error, Result},
scalar::Scalar,
sys, try_ffi,
types::PointerMode,
};
/// A stateful cuSPARSE handle.
///
/// Use one context per host thread or concurrent task. The handle is movable
/// between threads, but it is intentionally not `Clone` or `Sync`.
#[derive(Debug)]
pub struct Context {
handle: Handle,
}
#[derive(Debug)]
struct Handle {
raw: sys::cusparseHandle_t,
cuda_ctx: Arc<CudaContext>,
}
// cuSPARSE handles carry mutable pointer-mode and stream state. Ownership can
// move between threads, but the wrapper requires exclusive access for mutation.
unsafe impl Send for Handle {}
impl Context {
/// Initializes the cuSPARSE library and creates a cuSPARSE handle.
/// The handle must be created before using other cuSPARSE operations through this wrapper.
/// It allocates hardware resources needed to access the GPU.
///
/// # Errors
///
/// Returns an error if the CUDA context cannot be bound, if cuSPARSE cannot
/// create a handle, or if cuSPARSE returns a null handle.
pub fn create(cuda_ctx: &Arc<CudaContext>) -> Result<Self> {
cuda_ctx.bind()?;
let mut handle = ptr::null_mut();
unsafe {
try_ffi!(sys::cusparseCreate(&raw mut handle))?;
}
if handle.is_null() {
return Err(Error::NullHandle);
}
Ok(Self {
handle: Handle {
raw: handle,
cuda_ctx: Arc::clone(cuda_ctx),
},
})
}
/// Wraps an existing cuSPARSE handle and takes ownership of it.
///
/// # Safety
///
/// `handle` must be a valid cuSPARSE handle associated with `cuda_ctx`.
/// Ownership of `handle` is transferred to the returned context, and the
/// handle must not be destroyed elsewhere after calling this function.
pub unsafe fn from_raw(
handle: sys::cusparseHandle_t,
cuda_ctx: Arc<CudaContext>,
) -> Result<Self> {
if handle.is_null() {
return Err(Error::NullHandle);
}
Ok(Self {
handle: Handle {
raw: handle,
cuda_ctx,
},
})
}
/// Returns the underlying CUDA context used by this cuSPARSE handle.
pub fn cuda_context(&self) -> &Arc<CudaContext> {
&self.handle.cuda_ctx
}
/// Binds the underlying CUDA context associated with this handle.
///
/// # Errors
///
/// Returns an error if the CUDA context cannot be bound.
pub fn bind(&self) -> Result<()> {
Ok(self.cuda_context().bind()?)
}
/// Ensures `stream` belongs to the same CUDA context as this handle.
///
/// Returns an error if the stream belongs to a different context.
pub fn ensure_stream(&self, stream: &Stream) -> Result<()> {
if self.cuda_context().as_ref() != stream.context() {
return Err(Error::StreamContextMismatch);
}
self.bind()
}
/// Returns the version number of the cuSPARSE library.
///
/// # Errors
///
/// Returns an error if the CUDA context cannot be bound or if cuSPARSE
/// cannot report the version for this handle.
pub fn version(&self) -> Result<i32> {
self.bind()?;
let mut version = 0;
unsafe {
try_ffi!(sys::cusparseGetVersion(self.as_raw(), &raw mut version))?;
}
Ok(version)
}
/// Returns the stream used for cuSPARSE operations on this handle.
/// If no explicit stream has been set, cuSPARSE uses the CUDA default stream.
///
/// # Errors
///
/// Returns an error if the CUDA context cannot be bound or if cuSPARSE
/// cannot report the current stream.
pub fn stream(&self) -> Result<StreamBinding> {
self.bind()?;
let mut stream = ptr::null_mut();
unsafe {
try_ffi!(sys::cusparseGetStream(self.as_raw(), &raw mut stream))?;
}
Ok(if stream.is_null() {
StreamBinding::Default(Arc::clone(self.cuda_context()))
} else {
StreamBinding::Borrowed(unsafe {
BorrowedStream::from_raw(stream, Arc::clone(self.cuda_context()))
})
})
}
/// Sets the stream used by cuSPARSE operations on this handle.
///
/// # Errors
///
/// Returns an error if `stream` belongs to another CUDA context, if the CUDA
/// context cannot be bound, or if cuSPARSE rejects the stream.
pub fn set_stream(&self, stream: Option<&Stream>) -> Result<()> {
if let Some(stream) = stream {
self.ensure_stream(stream)?;
} else {
self.bind()?;
}
unsafe {
try_ffi!(sys::cusparseSetStream(
self.as_raw(),
match stream {
Some(stream) => stream.as_raw(),
None => ptr::null_mut(),
},
))?;
}
Ok(())
}
/// Returns the context-global scalar pointer mode used by cuSPARSE operations on this handle.
/// See [`PointerMode`] for scalar pointer semantics.
///
/// # Errors
///
/// Returns an error if the CUDA context cannot be bound or if cuSPARSE
/// cannot report the pointer mode.
pub fn scalar_pointer_mode(&self) -> Result<PointerMode> {
self.bind()?;
let mut mode = sys::cusparsePointerMode_t::CUSPARSE_POINTER_MODE_HOST;
unsafe {
try_ffi!(sys::cusparseGetPointerMode(self.as_raw(), &raw mut mode))?;
}
Ok(mode.into())
}
/// Sets the context-global scalar pointer mode used by cuSPARSE operations on this handle.
/// The default mode reads scalar values from host memory.
/// See [`PointerMode`] for scalar pointer semantics.
///
/// # Errors
///
/// Returns an error if the CUDA context cannot be bound or if cuSPARSE
/// rejects the pointer mode.
pub fn set_scalar_pointer_mode(&self, mode: PointerMode) -> Result<()> {
self.bind()?;
unsafe {
try_ffi!(sys::cusparseSetPointerMode(self.as_raw(), mode.into()))?;
}
Ok(())
}
pub(crate) fn require_scalar_pointer_mode<T>(
&self,
alpha: Scalar<'_, T>,
beta: Scalar<'_, T>,
) -> Result<()> {
let alpha_mode = alpha.pointer_mode();
let beta_mode = beta.pointer_mode();
if alpha_mode != beta_mode {
return Err(Error::ScalarPointerModeMismatch);
}
if self.scalar_pointer_mode()? != alpha_mode {
self.set_scalar_pointer_mode(alpha_mode)?;
}
Ok(())
}
/// Experimental: sets the logging callback function.
///
/// The callback must use the cuSPARSE logger callback ABI.
///
/// # Safety
///
/// `callback`, if present, must remain valid for use by cuSPARSE and must
/// follow the callback ABI expected by the library.
///
/// # Errors
///
/// Returns an error if cuSPARSE rejects the callback.
pub unsafe fn set_logger_callback(callback: sys::cusparseLoggerCallback_t) -> Result<()> {
unsafe {
try_ffi!(sys::cusparseLoggerSetCallback(callback))?;
}
Ok(())
}
/// Experimental: sets the logging level.
///
/// # Errors
///
/// Returns an error if cuSPARSE rejects the logging level.
pub fn set_logger_level(level: i32) -> Result<()> {
unsafe {
try_ffi!(sys::cusparseLoggerSetLevel(level))?;
}
Ok(())
}
/// Experimental: sets the logging mask.
///
/// # Errors
///
/// Returns an error if cuSPARSE rejects the logging mask.
pub fn set_logger_mask(mask: i32) -> Result<()> {
unsafe {
try_ffi!(sys::cusparseLoggerSetMask(mask))?;
}
Ok(())
}
/// Experimental: sets the logging output file.
/// Once registered, the provided file handle must remain open until another
/// file handle is registered.
///
/// # Safety
///
/// `file` must be a valid `FILE` handle for as long as cuSPARSE may write to it.
///
/// # Errors
///
/// Returns an error if cuSPARSE rejects the file handle.
pub unsafe fn set_logger_file(file: *mut sys::FILE) -> Result<()> {
unsafe {
try_ffi!(sys::cusparseLoggerSetFile(file))?;
}
Ok(())
}
/// Experimental: sets the logging output file by path.
///
/// # Errors
///
/// Returns an error if `path` cannot be converted to a C string or if
/// cuSPARSE cannot open the log file.
pub fn set_logger_path(path: impl AsRef<Path>) -> Result<()> {
let path = path_to_cstring(path.as_ref())?;
unsafe {
try_ffi!(sys::cusparseLoggerOpenFile(path.as_ptr()))?;
}
Ok(())
}
/// Disables cuSPARSE logging.
///
/// # Errors
///
/// Returns an error if cuSPARSE cannot disable logging.
pub fn disable_logger() -> Result<()> {
unsafe {
try_ffi!(sys::cusparseLoggerForceDisable())?;
}
Ok(())
}
/// Returns the raw cuSPARSE handle.
///
/// The returned handle is borrowed and remains valid only while this
/// context and its underlying CUDA context are alive.
pub fn as_raw(&self) -> sys::cusparseHandle_t {
self.handle.raw
}
/// Consumes the context and returns the raw cuSPARSE handle without
/// destroying it.
///
/// The caller becomes responsible for eventually destroying the returned
/// handle with cuSPARSE.
pub fn into_raw(self) -> sys::cusparseHandle_t {
let context = ManuallyDrop::new(self);
context.handle.raw
}
}
impl Drop for Handle {
fn drop(&mut self) {
if let Err(err) = self.cuda_ctx.bind() {
#[cfg(debug_assertions)]
eprintln!("failed to bind cuda context before destroying cusparse handle: {err}");
}
unsafe {
if let Err(err) = try_ffi!(sys::cusparseDestroy(self.raw)) {
#[cfg(debug_assertions)]
eprintln!("failed to destroy cusparse context: {err}");
}
}
}
}