hybit 0.6.0

Autonomous hybrid sparse linear solver with adaptive local direct correction
Documentation
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
use std::env;
use std::error::Error;
use std::fs::{self, File};
use std::io::{BufRead, BufReader};
use std::path::{Path, PathBuf};
use std::time::Instant;

use hybit::{
    analyze_csr32, pcg_with_workspace, pcg_with_workspace_parallel_vectors, read_matrix_market,
    recommend_rigid_body_aggregate_nodes, Csr32Matrix, ParallelCsr32Operator,
    ParallelRigidBodyTwoLevelPreconditioner, PcgWorkspace, RigidBodyAggregation,
    RigidBodyTwoLevelBlockJacobiPreconditioner, SolverOptions, PARALLEL_PCG_VECTOR_CHUNK,
};

#[derive(Debug)]
struct Args {
    matrix: PathBuf,
    coordinates: PathBuf,
    rhs: Option<PathBuf>,
    relative_tolerance: f64,
    max_iterations: usize,
    target_coarse_dimension: usize,
    aggregation: RigidBodyAggregation,
}

impl Args {
    fn parse() -> Result<Self, Box<dyn Error>> {
        let mut matrix = None;
        let mut coordinates = None;
        let mut rhs = None;
        let mut relative_tolerance: f64 = 1.0e-8;
        let mut max_iterations = 3000usize;
        let mut target_coarse_dimension = 1536usize;
        let mut aggregation = RigidBodyAggregation::Graph;
        let mut it = env::args().skip(1);
        while let Some(arg) = it.next() {
            match arg.as_str() {
                "--matrix" => matrix = Some(PathBuf::from(next_value(&mut it, "--matrix")?)),
                "--coords" => coordinates = Some(PathBuf::from(next_value(&mut it, "--coords")?)),
                "--rhs" => rhs = Some(PathBuf::from(next_value(&mut it, "--rhs")?)),
                "--tol" => relative_tolerance = next_value(&mut it, "--tol")?.parse()?,
                "--max-iters" => max_iterations = next_value(&mut it, "--max-iters")?.parse()?,
                "--target-coarse-dim" => {
                    target_coarse_dimension = next_value(&mut it, "--target-coarse-dim")?.parse()?
                }
                "--aggregation" => {
                    aggregation = match next_value(&mut it, "--aggregation")?
                        .to_ascii_lowercase()
                        .as_str()
                    {
                        "contiguous" => RigidBodyAggregation::Contiguous,
                        "graph" => RigidBodyAggregation::Graph,
                        other => {
                            return Err(format!(
                                "unknown aggregation '{other}'; use contiguous or graph"
                            )
                            .into())
                        }
                    }
                }
                "-h" | "--help" => {
                    print_usage();
                    std::process::exit(0);
                }
                other if !other.starts_with('-') && matrix.is_none() => {
                    matrix = Some(PathBuf::from(other))
                }
                other => return Err(format!("unknown argument '{other}'").into()),
            }
        }
        let matrix = matrix.ok_or("missing matrix path; use --matrix FILE.mtx")?;
        let coordinates = coordinates.unwrap_or_else(|| matrix.with_extension("coords"));
        if !relative_tolerance.is_finite() || relative_tolerance <= 0.0 {
            return Err("--tol must be finite and > 0".into());
        }
        if max_iterations == 0 {
            return Err("--max-iters must be > 0".into());
        }
        if target_coarse_dimension < 6 {
            return Err("--target-coarse-dim must be >= 6".into());
        }
        Ok(Self {
            matrix,
            coordinates,
            rhs,
            relative_tolerance,
            max_iterations,
            target_coarse_dimension,
            aggregation,
        })
    }
}

fn next_value<I: Iterator<Item = String>>(
    it: &mut I,
    flag: &str,
) -> Result<String, Box<dyn Error>> {
    it.next()
        .ok_or_else(|| format!("missing value after {flag}").into())
}

fn print_usage() {
    println!("HyBIT serial vs parallel/fused PCG vector-kernel benchmark");
    println!("Usage: fem_structural_pcg_parallel --matrix K.mtx [--coords K.coords] [--rhs b.txt] [--tol 1e-8] [--max-iters 3000] [--target-coarse-dim 1536] [--aggregation graph|contiguous]");
    println!("Both paths use Parallel CSR + Parallel rigid-body preconditioning.");
    println!("Set RAYON_NUM_THREADS before launch to control the shared Rayon pool.");
}

fn read_coordinates(path: &Path) -> Result<Vec<[f64; 3]>, Box<dyn Error>> {
    let file = File::open(path)?;
    let reader = BufReader::new(file);
    let mut expected = None::<usize>;
    let mut coordinates = Vec::new();
    for (line_no, line) in reader.lines().enumerate() {
        let line = line?;
        let text = line.trim();
        if text.is_empty() || text.starts_with('#') {
            continue;
        }
        if expected.is_none() {
            expected = Some(text.parse::<usize>().map_err(|e| {
                format!(
                    "{}:{}: invalid coordinate count: {e}",
                    path.display(),
                    line_no + 1
                )
            })?);
            coordinates.reserve(expected.unwrap());
            continue;
        }
        let fields: Vec<&str> = text.split_whitespace().collect();
        if fields.len() != 3 {
            return Err(format!(
                "{}:{}: expected three coordinates",
                path.display(),
                line_no + 1
            )
            .into());
        }
        let xyz = [
            fields[0].parse::<f64>()?,
            fields[1].parse::<f64>()?,
            fields[2].parse::<f64>()?,
        ];
        if xyz.iter().any(|v| !v.is_finite()) {
            return Err(
                format!("{}:{}: non-finite coordinate", path.display(), line_no + 1).into(),
            );
        }
        coordinates.push(xyz);
    }
    let expected =
        expected.ok_or_else(|| format!("{}: missing coordinate count", path.display()))?;
    if coordinates.len() != expected {
        return Err(format!(
            "{}: coordinate count mismatch: header says {}, read {}",
            path.display(),
            expected,
            coordinates.len()
        )
        .into());
    }
    Ok(coordinates)
}

fn load_rhs(path: &Path, n: usize) -> Result<Vec<f64>, Box<dyn Error>> {
    let text = fs::read_to_string(path)?;
    let mut values = Vec::with_capacity(n);
    for (line_index, raw_line) in text.lines().enumerate() {
        let line = raw_line.trim_start_matches('\u{feff}').trim();
        if line.is_empty() || line.starts_with('#') || line.starts_with('%') {
            continue;
        }
        for (token_index, token) in line.split_whitespace().enumerate() {
            let value = token.parse::<f64>().map_err(|e| {
                format!(
                    "{}: invalid RHS float at line {}, token {}: {:?} ({e})",
                    path.display(),
                    line_index + 1,
                    token_index + 1,
                    token
                )
            })?;
            if !value.is_finite() {
                return Err(format!(
                    "{}: non-finite RHS value at line {}, token {}",
                    path.display(),
                    line_index + 1,
                    token_index + 1
                )
                .into());
            }
            values.push(value);
        }
    }
    if values.len() != n {
        return Err(format!(
            "{}: RHS length mismatch: expected {n}, got {}",
            path.display(),
            values.len()
        )
        .into());
    }
    Ok(values)
}

fn norm2(x: &[f64]) -> f64 {
    x.iter().map(|v| v * v).sum::<f64>().sqrt()
}

fn mib(bytes: usize) -> f64 {
    bytes as f64 / (1024.0 * 1024.0)
}

fn verified_relative_residual(
    a: &Csr32Matrix,
    b: &[f64],
    x: &[f64],
) -> Result<f64, Box<dyn Error>> {
    let ax = a.spmv(x)?;
    let rr = b
        .iter()
        .zip(&ax)
        .map(|(&bi, &ai)| {
            let r = bi - ai;
            r * r
        })
        .sum::<f64>()
        .sqrt();
    let bn = norm2(b);
    Ok(if bn == 0.0 { rr } else { rr / bn })
}

fn relative_difference(a: &[f64], b: &[f64]) -> f64 {
    let mut diff2 = 0.0;
    let mut ref2 = 0.0;
    for (&x, &y) in a.iter().zip(b) {
        let d = x - y;
        diff2 += d * d;
        ref2 += x * x;
    }
    diff2.sqrt() / ref2.sqrt().max(f64::MIN_POSITIVE)
}

fn main() -> Result<(), Box<dyn Error>> {
    let args = Args::parse()?;
    println!(
        "HyBIT {} serial vs parallel/fused PCG vector benchmark",
        env!("CARGO_PKG_VERSION")
    );
    println!("matrix             : {}", args.matrix.display());
    println!("coordinates        : {}", args.coordinates.display());

    let load_start = Instant::now();
    let (matrix, mm) = read_matrix_market(&args.matrix)?;
    let matrix_load = load_start.elapsed().as_secs_f64();
    let coord_start = Instant::now();
    let coordinates = read_coordinates(&args.coordinates)?;
    let coord_load = coord_start.elapsed().as_secs_f64();
    let matrix_profile = analyze_csr32(&matrix)?;

    println!(
        "Matrix Market      : {:?}, {} input entries -> {} CSR nnz",
        mm.symmetry, mm.input_entries, mm.csr_nnz
    );
    println!(
        "dimensions         : {} x {}",
        matrix_profile.nrows, matrix_profile.ncols
    );
    println!("nnz                : {}", matrix_profile.nnz);
    println!(
        "CSR storage        : {:.3} MiB",
        mib(matrix.storage_bytes())
    );
    println!("matrix load        : {:.3} ms", matrix_load * 1.0e3);
    println!("coordinate nodes   : {}", coordinates.len());
    println!("coordinate load    : {:.3} ms", coord_load * 1.0e3);
    println!("aggregation        : {:?}", args.aggregation);
    println!("target coarse dim  : {}", args.target_coarse_dimension);

    if !matrix_profile.square || !matrix_profile.full_diagonal || !matrix_profile.positive_diagonal
    {
        return Err(
            "structural PCG benchmark requires a square matrix with a complete positive diagonal"
                .into(),
        );
    }
    if matrix.nrows() != coordinates.len() * 3 {
        return Err(format!(
            "matrix/coordinate mismatch: {} matrix rows != {} coordinate nodes * 3",
            matrix.nrows(),
            coordinates.len()
        )
        .into());
    }

    let b = if let Some(path) = args.rhs.as_deref() {
        println!("RHS                : {}", path.display());
        load_rhs(path, matrix.nrows())?
    } else {
        println!("RHS                : generated as b=A*1 (known exact solution)");
        matrix.spmv(&vec![1.0; matrix.ncols()])?
    };

    let aggregate_nodes =
        recommend_rigid_body_aggregate_nodes(coordinates.len(), args.target_coarse_dimension)?;
    let setup_start = Instant::now();
    let preconditioner = match args.aggregation {
        RigidBodyAggregation::Graph => {
            RigidBodyTwoLevelBlockJacobiPreconditioner::from_csr32_graph(
                &matrix,
                &coordinates,
                aggregate_nodes,
            )?
        }
        RigidBodyAggregation::Contiguous => RigidBodyTwoLevelBlockJacobiPreconditioner::from_csr32(
            &matrix,
            &coordinates,
            aggregate_nodes,
        )?,
        RigidBodyAggregation::Auto => unreachable!(),
    };
    let parallel_preconditioner = ParallelRigidBodyTwoLevelPreconditioner::new(&preconditioner)?;
    let parallel_operator = ParallelCsr32Operator::new(&matrix);
    let setup_seconds = setup_start.elapsed().as_secs_f64();

    println!("aggregate target   : {} nodes", aggregate_nodes);
    println!("aggregate count    : {}", preconditioner.aggregate_count());
    println!("coarse dimension   : {}", preconditioner.coarse_dimension());
    println!(
        "prec storage       : {:.3} MiB",
        mib(preconditioner.factor_bytes())
    );
    println!(
        "parallel index     : {:.3} MiB",
        mib(parallel_preconditioner.index_storage_bytes())
    );
    println!("setup              : {:.3} ms", setup_seconds * 1.0e3);
    println!(
        "Rayon threads      : {}",
        parallel_preconditioner.rayon_threads()
    );
    println!("vector chunk       : {} values", PARALLEL_PCG_VECTOR_CHUNK);

    let options = SolverOptions {
        relative_tolerance: args.relative_tolerance,
        absolute_tolerance: 0.0,
        max_iterations: args.max_iterations,
    };
    let b_norm = norm2(&b).max(f64::MIN_POSITIVE);

    let mut x_serial = vec![0.0; matrix.ncols()];
    let mut ws_serial = PcgWorkspace::new(matrix.nrows());
    let serial_start = Instant::now();
    let serial_out = pcg_with_workspace(
        &parallel_operator,
        &parallel_preconditioner,
        &b,
        &mut x_serial,
        options,
        &mut ws_serial,
    )?;
    let serial_wall = serial_start.elapsed().as_secs_f64();
    let serial_verified = verified_relative_residual(&matrix, &b, &x_serial)?;

    let mut x_parallel = vec![0.0; matrix.ncols()];
    let mut ws_parallel = PcgWorkspace::new(matrix.nrows());
    let parallel_start = Instant::now();
    let parallel_out = pcg_with_workspace_parallel_vectors(
        &parallel_operator,
        &parallel_preconditioner,
        &b,
        &mut x_parallel,
        options,
        &mut ws_parallel,
    )?;
    let parallel_wall = parallel_start.elapsed().as_secs_f64();
    let parallel_verified = verified_relative_residual(&matrix, &b, &x_parallel)?;

    println!();
    println!("[1/2] Production PCG vector kernels");
    println!("status             : {:?}", serial_out.status);
    println!("iterations         : {}", serial_out.iterations);
    println!(
        "reported residual  : {:.6e}",
        serial_out.final_residual / b_norm
    );
    println!("verified residual  : {:.6e}", serial_verified);
    println!("solve time         : {:.3} ms", serial_wall * 1.0e3);

    println!();
    println!("[2/2] Parallel/fused PCG vector kernels");
    println!("status             : {:?}", parallel_out.status);
    println!("iterations         : {}", parallel_out.iterations);
    println!(
        "reported residual  : {:.6e}",
        parallel_out.final_residual / b_norm
    );
    println!("verified residual  : {:.6e}", parallel_verified);
    println!("solve time         : {:.3} ms", parallel_wall * 1.0e3);

    println!();
    println!("Comparison");
    println!(
        "iteration ratio    : {:.3} (parallel vectors / production)",
        parallel_out.iterations as f64 / (serial_out.iterations.max(1) as f64)
    );
    println!(
        "solve-time ratio   : {:.3} (parallel vectors / production)",
        parallel_wall / serial_wall.max(f64::MIN_POSITIVE)
    );
    println!(
        "PCG speedup        : {:.3}x",
        serial_wall / parallel_wall.max(f64::MIN_POSITIVE)
    );
    println!(
        "solution delta     : {:.6e} relative L2",
        relative_difference(&x_serial, &x_parallel)
    );
    println!("note               : sparse operator and preconditioner are identical in both runs");

    Ok(())
}