mircuda-sys 0.1.0

Private native CUDA integration for mircuda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::{Context, unsupported};
use crate::Result;

#[derive(Debug)]
pub struct ProfilerRange;

impl Context {
    pub const fn start_profiler_range(&self) -> Result<ProfilerRange> {
        Err(unsupported())
    }
}

impl ProfilerRange {
    pub const fn stop(self) -> Result<()> {
        Err(unsupported())
    }
}