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
use crate::error::Result;
use crate::runtime::memory::LaunchablePtr;
use once_cell::sync::Lazy;
use rustacuda::function::{BlockSize, GridSize};
use rustacuda::launch;
use rustacuda::memory::DeviceCopy;
use rustacuda::module::Module;
use rustacuda::stream::Stream;
use std::ffi::CStr;
use std::os::unix::ffi::OsStrExt;
use std::path::PathBuf;
static mut MODULE_OWNER: Option<Module> = None;
static MODULE: Lazy<&'static Module> = Lazy::new(|| {
let mut module_path = PathBuf::from(env!("RESOURCES_PATH"));
module_path.push("noop.ptx\0");
let module_cstr = CStr::from_bytes_with_nul(module_path.as_os_str().as_bytes())
.expect("Failed to load CUDA module, check your RESOURCES_PATH");
let module = Module::load_from_file(module_cstr).expect("Failed to load CUDA module");
unsafe { MODULE_OWNER.get_or_insert(module) }
});
pub fn noop<T, P, G, B>(pointer: P, grid_size: G, block_size: B, stream: &Stream) -> Result<()>
where
P: Into<LaunchablePtr<T>>,
T: DeviceCopy,
G: Into<GridSize>,
B: Into<BlockSize>,
{
let module = *MODULE;
let p: LaunchablePtr<T> = pointer.into();
unsafe {
launch!(module.noop<<<grid_size, block_size, 0, stream>>>(p.clone()))?;
}
Ok(())
}