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
use hardware::IHardware;
use memory::{IMemory, MemoryType};
#[cfg(feature = "native")]
use frameworks::native::device::Cpu;
#[cfg(feature = "native")]
use frameworks::native::Error as NativeError;
#[cfg(feature = "opencl")]
use frameworks::opencl::Context as OpenCLContext;
#[cfg(feature = "opencl")]
use frameworks::opencl::Error as OpenCLError;
#[cfg(feature = "cuda")]
use frameworks::cuda::Context as CudaContext;
#[cfg(feature = "cuda")]
use frameworks::cuda::DriverError as CudaError;
use std::{fmt, error};
pub trait IDevice {
type H: IHardware;
type M: IMemory;
fn id(&self) -> &isize;
fn hardwares(&self) -> &Vec<Self::H>;
fn alloc_memory(&self, size: usize) -> Result<Self::M, Error>;
fn sync_in(&self, source: &DeviceType, source_data: &MemoryType, dest_data: &mut Self::M) -> Result<(), Error>;
}
pub trait IDeviceSyncOut<T: IMemory> {
type M: IMemory;
fn sync_out(&self, source_data: &Self::M, dest_data: &mut T) -> Result<(), Error>;
}
#[derive(Debug, Eq, PartialEq, Hash, Clone)]
pub enum DeviceType {
#[cfg(feature = "native")]
Native(Cpu),
#[cfg(feature = "opencl")]
OpenCL(OpenCLContext),
#[cfg(feature = "cuda")]
Cuda(CudaContext),
}
#[derive(Debug, Copy, Clone)]
pub enum Error {
#[cfg(feature = "native")]
Native(NativeError),
#[cfg(feature = "opencl")]
OpenCL(OpenCLError),
#[cfg(feature = "cuda")]
Cuda(CudaError),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
#[cfg(feature = "native")]
Error::Native(ref err) => write!(f, "Native error: {}", err),
#[cfg(feature = "opencl")]
Error::OpenCL(ref err) => write!(f, "OpenCL error: {}", err),
#[cfg(feature = "cuda")]
Error::Cuda(ref err) => write!(f, "Cuda error: {}", err),
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match *self {
#[cfg(feature = "native")]
Error::Native(ref err) => err.description(),
#[cfg(feature = "opencl")]
Error::OpenCL(ref err) => err.description(),
#[cfg(feature = "cuda")]
Error::Cuda(ref err) => err.description(),
}
}
fn cause(&self) -> Option<&error::Error> {
match *self {
#[cfg(feature = "native")]
Error::Native(ref err) => Some(err),
#[cfg(feature = "opencl")]
Error::OpenCL(ref err) => Some(err),
#[cfg(feature = "cuda")]
Error::Cuda(ref err) => Some(err),
}
}
}
#[cfg(feature = "native")]
impl From<NativeError> for Error {
fn from(err: NativeError) -> Error {
Error::Native(err)
}
}
#[cfg(feature = "opencl")]
impl From<OpenCLError> for Error {
fn from(err: OpenCLError) -> Error {
Error::OpenCL(err)
}
}
#[cfg(feature = "cuda")]
impl From<CudaError> for Error {
fn from(err: CudaError) -> Error {
Error::Cuda(err)
}
}
impl From<Error> for ::tensor::Error {
fn from(err: Error) -> ::tensor::Error {
::tensor::Error::MemoryAllocationError(err)
}
}