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
use crate::{
    linalg::{temp_mat_req, temp_mat_uninit},
    ComplexField, MatMut, MatRef, Parallelism,
};
use dyn_stack::{PodStack, SizeOverflow, StackReq};
use reborrow::*;

/// Biconjugate gradient stabilized method.
pub mod bicgstab;
/// Conjugate gradient method.
pub mod conjugate_gradient;
/// Least squares minimal residual.
pub mod lsmr;

mod linop_impl;

/// Specifies whether the initial guess should be assumed to be zero or not.
#[derive(Copy, Clone, Debug, PartialEq, Eq, Default)]
pub enum InitialGuessStatus {
    /// Initial guess is already zeroed.
    Zero,
    /// Initial guess may contain non-zero values.
    #[default]
    MaybeNonZero,
}

/// Identity preconditioner, no-op for most operations.
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct IdentityPrecond {
    /// Dimension of the preconditioner, equal to the dimension of the solution.
    pub dim: usize,
}

impl<E: ComplexField> LinOp<E> for IdentityPrecond {
    #[inline]
    #[track_caller]
    fn apply_req(
        &self,
        _rhs_ncols: usize,
        _parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        Ok(StackReq::empty())
    }

    #[inline]
    fn nrows(&self) -> usize {
        self.dim
    }
    #[inline]
    fn ncols(&self) -> usize {
        self.dim
    }

    #[inline]
    #[track_caller]
    fn apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        _parallelism: Parallelism,
        _stack: PodStack<'_>,
    ) {
        { out }.copy_from(rhs);
    }
    #[inline]
    #[track_caller]
    fn conj_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        _parallelism: Parallelism,
        _stack: PodStack<'_>,
    ) {
        { out }.copy_from(rhs);
    }
}
impl<E: ComplexField> BiLinOp<E> for IdentityPrecond {
    #[inline]
    fn transpose_apply_req(
        &self,
        _rhs_ncols: usize,
        _parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        Ok(StackReq::empty())
    }

    #[inline]
    #[track_caller]
    fn transpose_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        _parallelism: Parallelism,
        _stack: PodStack<'_>,
    ) {
        { out }.copy_from(rhs);
    }
    #[inline]
    #[track_caller]
    fn adjoint_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        _parallelism: Parallelism,
        _stack: PodStack<'_>,
    ) {
        { out }.copy_from(rhs);
    }
}
impl<E: ComplexField> Precond<E> for IdentityPrecond {
    fn apply_in_place_req(
        &self,
        _rhs_ncols: usize,
        _parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        Ok(StackReq::empty())
    }

    fn apply_in_place(&self, _rhs: MatMut<'_, E>, _parallelism: Parallelism, _stack: PodStack<'_>) {
    }

    fn conj_apply_in_place(
        &self,
        _rhs: MatMut<'_, E>,
        _parallelism: Parallelism,
        _stack: PodStack<'_>,
    ) {
    }
}
impl<E: ComplexField> BiPrecond<E> for IdentityPrecond {
    fn transpose_apply_in_place_req(
        &self,
        _rhs_ncols: usize,
        _parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        Ok(StackReq::empty())
    }

    fn transpose_apply_in_place(
        &self,
        _rhs: MatMut<'_, E>,
        _parallelism: Parallelism,
        _stack: PodStack<'_>,
    ) {
    }

    fn adjoint_apply_in_place(
        &self,
        _rhs: MatMut<'_, E>,
        _parallelism: Parallelism,
        _stack: PodStack<'_>,
    ) {
    }
}

/// Linear operator from a finite-dimensional vector space.
pub trait LinOp<E: ComplexField>: Sync + core::fmt::Debug {
    /// Computes the workspace size and alignment required to apply `self` or the conjugate of
    /// `self` to a matrix with `rhs_ncols` columns.
    fn apply_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow>;

    /// Output dimension of the operator.
    fn nrows(&self) -> usize;
    /// Input dimension of the operator.
    fn ncols(&self) -> usize;

    /// Applies `self` to `rhs`, and stores the result in `out`.
    fn apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    );

    /// Applies the conjugate of `self` to `rhs`, and stores the result in `out`.
    fn conj_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    );
}

/// Linear operator that can be applied from either the right or the left side.
pub trait BiLinOp<E: ComplexField>: LinOp<E> {
    /// Computes the workspace size and alignment required to apply the transpose or adjoint of
    /// `self` to a matrix with `rhs_ncols` columns.
    fn transpose_apply_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow>;

    /// Applies the transpose of `self` to `rhs`, and stores the result in `out`.
    fn transpose_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    );

    /// Applies the adjoint of `self` to `rhs`, and stores the result in `out`.
    fn adjoint_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    );
}

/// Preconditioner for a linear system.
///
/// Same as [`LinOp`] except that it can be applied in place.
pub trait Precond<E: ComplexField>: LinOp<E> {
    /// Computes the workspace size and alignment required to apply `self` or the conjugate of
    /// `self` to a matrix with `rhs_ncols` columns in place.
    fn apply_in_place_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        temp_mat_req::<E>(self.nrows(), rhs_ncols)?.try_and(self.apply_req(rhs_ncols, parallelism)?)
    }

    /// Applies `self` to `rhs`, and stores the result in `rhs`.
    #[track_caller]
    fn apply_in_place(&self, rhs: MatMut<'_, E>, parallelism: Parallelism, stack: PodStack<'_>) {
        let (mut tmp, stack) = temp_mat_uninit::<E>(self.nrows(), rhs.ncols(), stack);
        self.apply(tmp.rb_mut(), rhs.rb(), parallelism, stack);
        { rhs }.copy_from(&tmp);
    }

    /// Applies the conjugate of `self` to `rhs`, and stores the result in `rhs`.
    #[track_caller]
    fn conj_apply_in_place(
        &self,
        rhs: MatMut<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        let (mut tmp, stack) = temp_mat_uninit::<E>(self.nrows(), rhs.ncols(), stack);
        self.conj_apply(tmp.rb_mut(), rhs.rb(), parallelism, stack);
        { rhs }.copy_from(&tmp);
    }
}

/// Preconditioner for a linear system that can bee applied from either the right or the left side.
///
/// Same as [`BiLinOp`] except that it can be applied in place.
pub trait BiPrecond<E: ComplexField>: Precond<E> + BiLinOp<E> {
    /// Computes the workspace size and alignment required to apply the transpose or adjoint of
    /// `self` to a matrix with `rhs_ncols` columns in place.
    fn transpose_apply_in_place_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        temp_mat_req::<E>(self.nrows(), rhs_ncols)?
            .try_and(self.transpose_apply_req(rhs_ncols, parallelism)?)
    }

    /// Applies the transpose of `self` to `rhs`, and stores the result in `rhs`.
    #[track_caller]
    fn transpose_apply_in_place(
        &self,
        rhs: MatMut<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        let (mut tmp, stack) = temp_mat_uninit::<E>(self.nrows(), rhs.ncols(), stack);
        self.transpose_apply(tmp.rb_mut(), rhs.rb(), parallelism, stack);
        { rhs }.copy_from(&tmp);
    }

    /// Applies the adjoint of `self` to `rhs`, and stores the result in `rhs`.
    #[track_caller]
    fn adjoint_apply_in_place(
        &self,
        rhs: MatMut<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        let (mut tmp, stack) = temp_mat_uninit::<E>(self.nrows(), rhs.ncols(), stack);
        self.adjoint_apply(tmp.rb_mut(), rhs.rb(), parallelism, stack);
        { rhs }.copy_from(&tmp);
    }
}

impl<E: ComplexField, T: ?Sized + LinOp<E>> LinOp<E> for &T {
    #[inline]
    #[track_caller]
    fn apply_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        (**self).apply_req(rhs_ncols, parallelism)
    }

    #[inline]
    fn nrows(&self) -> usize {
        (**self).nrows()
    }
    #[inline]
    fn ncols(&self) -> usize {
        (**self).ncols()
    }

    #[inline]
    #[track_caller]
    fn apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        (**self).apply(out, rhs, parallelism, stack)
    }

    #[inline]
    #[track_caller]
    fn conj_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        (**self).conj_apply(out, rhs, parallelism, stack)
    }
}

impl<E: ComplexField, T: ?Sized + BiLinOp<E>> BiLinOp<E> for &T {
    #[inline]
    #[track_caller]
    fn transpose_apply_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        (**self).transpose_apply_req(rhs_ncols, parallelism)
    }

    #[inline]
    #[track_caller]
    fn transpose_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        (**self).transpose_apply(out, rhs, parallelism, stack)
    }

    #[inline]
    #[track_caller]
    fn adjoint_apply(
        &self,
        out: MatMut<'_, E>,
        rhs: MatRef<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        (**self).adjoint_apply(out, rhs, parallelism, stack)
    }
}

impl<E: ComplexField, T: ?Sized + Precond<E>> Precond<E> for &T {
    fn apply_in_place_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        (**self).apply_in_place_req(rhs_ncols, parallelism)
    }

    fn apply_in_place(&self, rhs: MatMut<'_, E>, parallelism: Parallelism, stack: PodStack<'_>) {
        (**self).apply_in_place(rhs, parallelism, stack);
    }

    fn conj_apply_in_place(
        &self,
        rhs: MatMut<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        (**self).conj_apply_in_place(rhs, parallelism, stack);
    }
}

impl<E: ComplexField, T: ?Sized + BiPrecond<E>> BiPrecond<E> for &T {
    fn transpose_apply_in_place_req(
        &self,
        rhs_ncols: usize,
        parallelism: Parallelism,
    ) -> Result<StackReq, SizeOverflow> {
        (**self).transpose_apply_in_place_req(rhs_ncols, parallelism)
    }

    fn transpose_apply_in_place(
        &self,
        rhs: MatMut<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        (**self).transpose_apply_in_place(rhs, parallelism, stack);
    }

    fn adjoint_apply_in_place(
        &self,
        rhs: MatMut<'_, E>,
        parallelism: Parallelism,
        stack: PodStack<'_>,
    ) {
        (**self).adjoint_apply_in_place(rhs, parallelism, stack);
    }
}