matrix_operations_cuda 0.1.2

A library to perform matrix operations using cuda
Documentation
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
//! This module contains the CudaEnv struct and its methods
//!
//! CudaEnv allow you interact with CUDA environment, like allocate memory, launch kernels, etc.
//!
//! # Usage
//!
//! ```
//! use std::ffi::c_void;
//! use std::mem::size_of;
//! use matrix_operations_cuda::cuda_env::CudaEnv;
//! use matrix_operations_cuda::cuda_module::CudaModule;
//!
//! let mut cuda_env: CudaEnv;
//! unsafe {
//!     cuda_env = CudaEnv::new(0, 0).unwrap();
//!
//!     let module = CudaModule::new(b"resources/kernel.ptx\0").unwrap();
//!     let function = module.load_function(b"add_scalar\0").unwrap();
//!
//!     let data = [1.0f32, 2.0f32, 3.0f32, 4.0f32];
//!     let device_ptr_in = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
//!     cuda_env.copy_host_to_device(device_ptr_in, &data).unwrap();
//!
//!     let device_ptr_out = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
//!     cuda_env.set_empty_device_data(device_ptr_out, data.len() * size_of::<f32>()).unwrap();
//!
//!     let scalar = 1.0f32;
//!     let args = [
//!         &device_ptr_in as *const _ as *mut c_void,
//!         &device_ptr_out as *const _ as *mut c_void,
//!         &scalar as *const _ as *mut c_void
//!     ];
//!
//!     cuda_env.launch(function, &args, (1, 1, 1), (data.len() as u32, 1, 1)).unwrap();
//!
//!     let mut result = [0.0f32; 4];
//!     cuda_env.copy_device_to_host(&mut result, device_ptr_out).unwrap();
//!
//!     assert_eq!(result, [2.0f32, 3.0f32, 4.0f32, 5.0f32]);
//!
//!     cuda_env.free_data(device_ptr_in).unwrap();
//!     cuda_env.free_data(device_ptr_out).unwrap();
//!     module.free().unwrap();
//!     cuda_env.free().unwrap();
//! }
//! ```
use std::error::Error;
use std::ffi::{c_int, c_uint, c_void};
use std::mem::size_of;
use cuda_driver_sys::{CUcontext, cuCtxCreate_v2, cuCtxDestroy_v2, cuCtxPushCurrent_v2, cuCtxSynchronize, CUdevice, CUdevice_attribute_enum, cuDeviceGet, cuDeviceGetAttribute, CUdeviceptr, CUfunction, cuInit, cuLaunchKernel, cuMemAlloc_v2, cuMemcpyDtoH_v2, cuMemcpyHtoD_v2, cuMemFree_v2, cuMemsetD8_v2, CUresult};

/// CUDA environment struct, used to interact with CUDA environment
pub struct CudaEnv {
    ctx: CUcontext,
    device: CUdevice
}

impl CudaEnv {

    /// Initialize CUDA environment
    ///
    /// # Example
    ///
    /// ```
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn new(flags: c_uint, ordinal: c_int) -> Result<CudaEnv, Box<dyn Error>> {
        let mut ctx: CUcontext = std::ptr::null_mut();
        let mut device: CUdevice = CUdevice::default();

        let mut result = cuInit(flags);
        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error initializing CUDA : {:?}", result).into());
        }

        result = cuDeviceGet(&mut device, ordinal);
        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error getting CUDA device : {:?}", result).into());
        }

        result = cuCtxCreate_v2(&mut ctx, 0, device);
        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error creating CUDA context : {:?}", result).into());
        }

        result = cuCtxPushCurrent_v2(ctx);
        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error pushing CUDA context : {:?}", result).into());
        }

        Ok(CudaEnv {
            ctx,
            device
        })
    }

    /// Get max threads per block
    ///
    /// # Example
    ///
    /// ```
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let max_threads_per_block = cuda_env.get_max_threads_per_block();
    ///     println!("Max threads per block: {}", max_threads_per_block);
    ///
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn get_max_threads_per_block(&self) -> u32 {
        let mut max_threads_per_block: i32 = 0;
        cuDeviceGetAttribute(&mut max_threads_per_block as *mut c_int, CUdevice_attribute_enum::CU_DEVICE_ATTRIBUTE_MAX_THREADS_PER_BLOCK, self.device);
        max_threads_per_block as u32
    }

    /// Get max block per grid
    ///
    /// # Example
    ///
    /// ```
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let max_block_per_grid = cuda_env.get_max_block_per_grid();
    ///     println!("Max block per grid: {}", max_block_per_grid);
    ///
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn get_max_block_per_grid(&self) -> u32 {
        let mut max_block_per_grid: i32 = 0;
        cuDeviceGetAttribute(&mut max_block_per_grid as *mut c_int, CUdevice_attribute_enum::CU_DEVICE_ATTRIBUTE_MAX_GRID_DIM_X, self.device);
        max_block_per_grid as u32
    }

    /// Get grid_size and block_size
    ///
    /// # Example
    ///
    /// ```
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let max_threads_per_block = cuda_env.get_max_threads_per_block(); // 1024
    ///     let max_block_per_grid = cuda_env.get_max_block_per_grid();
    ///
    ///     let (block_dim, grid_dim) = CudaEnv::get_block_and_grid_dim(2000, max_threads_per_block, max_block_per_grid);
    ///
    ///     assert_eq!(block_dim, (32, 32, 1));
    ///     assert_eq!(grid_dim, (2, 1, 1));
    ///
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn get_block_and_grid_dim(data_len: usize, max_threads: u32, max_block: u32) -> ((u32, u32, u32), (u32, u32, u32)) {
        if is_perfect_square(max_threads) {
            let block_dim = (max_threads as f32).sqrt() as u32;
            let grid_dim = (data_len as f32 / max_threads as f32).ceil() as u32;

            if grid_dim <= max_block {
                return ((block_dim, block_dim, 1), (grid_dim, 1, 1));
            }
        } else {
            let block_dim = max_threads;
            let grid_dim = (data_len as f32 / max_threads as f32).ceil() as u32;

            if grid_dim <= max_block {
                return ((block_dim, 1, 1), (grid_dim, 1, 1));
            }
        }

        ((1, 1, 1), (1, 1, 1))
    }

    /// Launch a CUDA kernel
    ///
    /// # Example
    ///
    /// ```
    /// use std::ffi::c_void;
    /// use std::mem::size_of;
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    /// use matrix_operations_cuda::cuda_module::CudaModule;
    ///
    /// let mut cuda_env: CudaEnv;
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let module = CudaModule::new(b"resources/kernel.ptx\0").unwrap();
    ///     let function = module.load_function(b"add_scalar\0").unwrap();
    ///
    ///     let data = [1.0f32, 2.0f32, 3.0f32, 4.0f32];
    ///     let device_ptr_in = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///     cuda_env.copy_host_to_device(device_ptr_in, &data).unwrap();
    ///
    ///     let device_ptr_out = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///     cuda_env.set_empty_device_data(device_ptr_out, data.len() * size_of::<f32>()).unwrap();
    ///
    ///     let scalar = 1.0f32;
    ///     let args = [
    ///         &device_ptr_in as *const _ as *mut c_void,
    ///         &device_ptr_out as *const _ as *mut c_void,
    ///         &scalar as *const _ as *mut c_void
    ///     ];
    ///
    ///     cuda_env.launch(function, &args, (1, 1, 1), (data.len() as u32, 1, 1)).unwrap();
    ///
    ///     let mut result = [0.0f32; 4];
    ///     cuda_env.copy_device_to_host(&mut result, device_ptr_out).unwrap();
    ///
    ///     assert_eq!(result, [2.0f32, 3.0f32, 4.0f32, 5.0f32]);
    ///
    ///     cuda_env.free_data(device_ptr_in).unwrap();
    ///     cuda_env.free_data(device_ptr_out).unwrap();
    ///     module.free().unwrap();
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn launch(&self, function: CUfunction, args: &[*mut c_void], grid_size: (u32, u32, u32), bloc_size: (u32, u32, u32)) -> Result<(), Box<dyn Error>> {

        let result = cuLaunchKernel(
            function,
            grid_size.0, grid_size.1, grid_size.2,
            bloc_size.0, bloc_size.1, bloc_size.2,
            0,
            std::ptr::null_mut(),
            args.as_ptr() as *mut _,
            std::ptr::null_mut()
        );

        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error launching kernel : {:?}", result).into());
        }

        let result = cuCtxSynchronize();

        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error synchronizing kernel : {:?}", result).into());
        }

        Ok(())
    }

    /// Allocate memory on device
    ///
    /// # Example
    ///
    /// ```
    /// use std::mem::size_of;
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let data = [1.0f32, 2.0f32, 3.0f32, 4.0f32];
    ///     let device_ptr = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///
    ///     cuda_env.free_data(device_ptr).unwrap();
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn allocate(&self, size: usize) -> Result<CUdeviceptr, Box<dyn Error>> {
        let mut device_ptr: CUdeviceptr = CUdeviceptr::default();
        let result = cuMemAlloc_v2(&mut device_ptr, size);

        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error allocating memory : {:?}", result).into());
        }

        Ok(device_ptr)
    }

    /// Copy data from host to device
    ///
    /// # Example
    ///
    /// ```
    /// use std::mem::size_of;
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let data = [1.0f32, 2.0f32, 3.0f32, 4.0f32];
    ///     let device_ptr = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///     cuda_env.copy_host_to_device(device_ptr, &data).unwrap();
    ///
    ///     cuda_env.free_data(device_ptr).unwrap();
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn copy_host_to_device<T>(&self, device_ptr: CUdeviceptr, data: &[T]) -> Result<(), Box<dyn Error>> {
        let result = cuMemcpyHtoD_v2(device_ptr, data.as_ptr() as *const c_void, data.len() * size_of::<T>());

        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error copy data into device : {:?}", result).into());
        }

        Ok(())
    }

    /// Copy data from device to host
    ///
    /// # Example
    ///
    /// ```
    /// use std::ffi::c_void;
    /// use std::mem::size_of;
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    /// use matrix_operations_cuda::cuda_module::CudaModule;
    ///
    /// let mut cuda_env: CudaEnv;
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let module = CudaModule::new(b"resources/kernel.ptx\0").unwrap();
    ///     let function = module.load_function(b"add_scalar\0").unwrap();
    ///
    ///     let data = [1.0f32, 2.0f32, 3.0f32, 4.0f32];
    ///     let device_ptr_in = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///     cuda_env.copy_host_to_device(device_ptr_in, &data).unwrap();
    ///
    ///     let device_ptr_out = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///     cuda_env.set_empty_device_data(device_ptr_out, data.len() * size_of::<f32>()).unwrap();
    ///
    ///     let scalar = 1.0f32;
    ///     let args = [
    ///         &device_ptr_in as *const _ as *mut c_void,
    ///         &device_ptr_out as *const _ as *mut c_void,
    ///         &scalar as *const _ as *mut c_void
    ///     ];
    ///
    ///     cuda_env.launch(function, &args, (1, 1, 1), (data.len() as u32, 1, 1)).unwrap();
    ///
    ///     let mut result = [0.0f32; 4];
    ///     cuda_env.copy_device_to_host(&mut result, device_ptr_out).unwrap();
    ///
    ///     assert_eq!(result, [2.0f32, 3.0f32, 4.0f32, 5.0f32]);
    ///
    ///     cuda_env.free_data(device_ptr_in).unwrap();
    ///     cuda_env.free_data(device_ptr_out).unwrap();
    ///     module.free().unwrap();
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn copy_device_to_host<T>(&self, data: &mut [T], device_ptr: CUdeviceptr) -> Result<(), Box<dyn Error>> {
        let result = cuMemcpyDtoH_v2(data.as_mut_ptr() as *mut c_void, device_ptr, data.len() * size_of::<T>());

        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error copy data into device : {:?}", result).into());
        }

        Ok(())
    }

    /// Set device data to 0
    ///
    /// # Example
    ///
    /// ```
    /// use std::mem::size_of;
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let data = [1.0f32, 2.0f32, 3.0f32, 4.0f32];
    ///     let device_ptr = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///     cuda_env.set_empty_device_data(device_ptr, data.len() * size_of::<f32>()).unwrap();
    ///
    ///     cuda_env.free_data(device_ptr).unwrap();
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn set_empty_device_data(&self, device_ptr: CUdeviceptr, size: usize) -> Result<(), Box<dyn Error>> {
        let result = cuMemsetD8_v2(device_ptr, 0, size);

        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error setting empty data into device : {:?}", result).into());
        }

        Ok(())
    }

    /// Free CUDA environment
    ///
    /// # Example
    ///
    /// ```
    /// use std::mem::size_of;
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let data = [1.0f32, 2.0f32, 3.0f32];
    ///     let device_ptr_1 = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///     let device_ptr_2 = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///
    ///     let device_ptrs = vec![device_ptr_1, device_ptr_2];
    ///
    ///     cuda_env.free_all_data(device_ptrs.as_slice()).unwrap();
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn free_all_data(&self, device_ptrs: &[CUdeviceptr]) -> Result<(), Box<dyn Error>> {
        for device_ptr in device_ptrs {
            self.free_data(*device_ptr)?;
        }
        Ok(())
    }

    /// Free CUDA data
    ///
    /// # Example
    ///
    /// ```
    /// use std::mem::size_of;
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     let data = [1.0f32, 2.0f32, 3.0f32];
    ///     let device_ptr = cuda_env.allocate(data.len() * size_of::<f32>()).unwrap();
    ///
    ///     cuda_env.free_data(device_ptr).unwrap();
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn free_data(&self, device_ptr: CUdeviceptr) -> Result<(), Box<dyn Error>> {
        let result = cuMemFree_v2(device_ptr);

        if result != CUresult::CUDA_SUCCESS {
            return Err(format!("Error freeing data : {:?}", result).into());
        }

        Ok(())
    }

    /// Free CUDA environment
    ///
    /// # Example
    ///
    /// ```
    /// use matrix_operations_cuda::cuda_env::CudaEnv;
    ///
    /// let mut cuda_env: CudaEnv;
    ///
    /// unsafe {
    ///     cuda_env = CudaEnv::new(0, 0).unwrap();
    ///
    ///     cuda_env.free().unwrap();
    /// }
    /// ```
    pub unsafe fn free(&self) -> Result<(), Box<dyn Error>> {
        cuCtxDestroy_v2(self.ctx);
        Ok(())
    }
}

fn is_perfect_square(num: u32) -> bool {
    let sqrt_num = (num as f64).sqrt() as u32;
    return sqrt_num * sqrt_num == num;
}