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
use std::{fmt::Debug};
use custos::{opencl::construct_buffer, CLDevice, VecRead, WriteBuf, CPU};
use crate::Matrix;
pub fn cpu_exec<'c, 'a, 'o, T, F>(
device: &'o CLDevice,
matrix: &Matrix<'a, T>,
f: F,
) -> custos::Result<Matrix<'o, T>>
where
F: for<'b> Fn(&'b CPU, &Matrix<T>) -> Matrix<'b, T>,
T: Copy + Default + Debug,
{
if device.unified_mem() {
return custos::GLOBAL_CPU.with(|cpu| {
let no_drop = f(cpu, matrix);
let dims = no_drop.dims();
unsafe { construct_buffer(device, no_drop.to_buf())}.map(|buf| (buf, dims).into())
});
}
let cpu = CPU::new();
let cpu_buf: Matrix<T> = Matrix::from((&cpu, matrix.dims(), device.read(matrix)));
let mat: Matrix<T> = f(&cpu, &cpu_buf);
let convert = Matrix::from((device, mat));
Ok(convert)
}
pub fn cpu_exec_mut<T, F>(device: &CLDevice, matrix: &mut Matrix<T>, f: F) -> custos::Result<()>
where
F: Fn(&CPU, &mut Matrix<T>),
T: Copy + Default,
{
let cpu = CPU::new();
if device.unified_mem() {
return Ok(f(&cpu, matrix));
}
let mut cpu_matrix = Matrix::from((&cpu, matrix.dims(), device.read(matrix)));
f(&cpu, &mut cpu_matrix);
device.write(matrix, &cpu_matrix);
Ok(())
}
pub fn cpu_exec_lhs_rhs<'a, 'o, T, F>(
device: &'o CLDevice,
lhs: &Matrix<'a, T>,
rhs: &Matrix<'a, T>,
f: F,
) -> custos::Result<Matrix<'o, T>>
where
F: for<'b> Fn(&'b CPU, &Matrix<T>, &Matrix<T>) -> Matrix<'b, T>,
T: Copy + Default + Debug,
{
let cpu = CPU::new();
if device.unified_mem() {
return custos::GLOBAL_CPU.with(|cpu| {
let no_drop = f(cpu, lhs, rhs);
let no_drop_dims = no_drop.dims();
unsafe { construct_buffer(device, no_drop.to_buf()) }.map(|buf| (buf, no_drop_dims).into())
});
}
let lhs = Matrix::from((&cpu, lhs.dims(), device.read(lhs)));
let rhs = Matrix::from((&cpu, rhs.dims(), device.read(rhs)));
Ok(Matrix::from((device, f(&cpu, &lhs, &rhs))))
}
pub fn cpu_exec_lhs_rhs_mut<T, F>(
device: &CLDevice,
lhs: &mut Matrix<T>,
rhs: &Matrix<T>,
f: F,
) -> custos::Result<()>
where
F: Fn(&CPU, &mut Matrix<T>, &Matrix<T>),
T: Copy + Default,
{
let cpu = CPU::new();
if device.unified_mem() {
return Ok(f(&cpu, lhs, rhs));
}
let mut cpu_lhs = Matrix::from((&cpu, lhs.dims(), device.read(lhs)));
let cpu_rhs = Matrix::from((&cpu, rhs.dims(), device.read(rhs)));
f(&cpu, &mut cpu_lhs, &cpu_rhs);
device.write(lhs, &cpu_lhs);
Ok(())
}
pub fn cpu_exec_scalar<T, F>(device: &CLDevice, matrix: &Matrix<T>, f: F) -> T
where
F: Fn(&CPU, &Matrix<T>) -> T,
T: Copy + Default,
{
let cpu = CPU::new();
if device.unified_mem() {
return f(&cpu, matrix);
}
let cpu_buf = Matrix::from((&cpu, matrix.dims(), device.read(matrix)));
f(&cpu, &cpu_buf)
}