bunsen 0.21.0

bunsen is acceleration tooling for burn
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
//! # Dimension Expressions.

use core::fmt::{
    Display,
    Formatter,
};

use crate::support::math::maybe_iroot;

/// A stack/static expression algebra for dimension sizes.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum DimExpr<'a> {
    /// A parameter reference.
    Param {
        /// The id of the parameter.
        id: usize,
    },

    /// Negation of an expression.
    Negate {
        /// The child expression.
        child: &'a DimExpr<'a>,
    },

    /// Exponentiation of an expression.
    Pow {
        /// The child expression.
        base: &'a DimExpr<'a>,

        /// The exponent.
        exp: usize,
    },

    /// Sum of expressions.
    Sum {
        /// The child expressions.
        children: &'a [DimExpr<'a>],
    },

    /// Product of expressions.
    Prod {
        /// The child expressions.
        children: &'a [DimExpr<'a>],
    },
}

/// Display Adapter to format `DimExprs` with a `Index`.
pub struct ExprDisplayAdapter<'a> {
    ///  index.
    pub index: &'a [&'a str],

    /// Expression to format.
    pub expr: &'a DimExpr<'a>,
}

impl<'a> Display for ExprDisplayAdapter<'a> {
    fn fmt(
        &self,
        f: &mut Formatter<'_>,
    ) -> core::fmt::Result {
        match self.expr {
            DimExpr::Param { id } => write!(f, "{}", self.index[*id]),
            DimExpr::Negate { child } => write!(
                f,
                "(-{})",
                ExprDisplayAdapter {
                    expr: child,
                    index: self.index
                }
            ),
            DimExpr::Pow { base: child, exp } => write!(
                f,
                "({}^{})",
                ExprDisplayAdapter {
                    expr: child,
                    index: self.index
                },
                exp
            ),
            DimExpr::Sum { children } => {
                write!(f, "(")?;
                for (idx, expr) in children.iter().enumerate() {
                    if idx > 0 {
                        write!(f, "+")?;
                    }
                    write!(
                        f,
                        "{}",
                        ExprDisplayAdapter {
                            expr,
                            index: self.index
                        }
                    )?;
                }
                write!(f, ")")
            }
            DimExpr::Prod { children } => {
                write!(f, "(")?;
                for (idx, expr) in children.iter().enumerate() {
                    if idx > 0 {
                        write!(f, "*")?;
                    }
                    write!(
                        f,
                        "{}",
                        ExprDisplayAdapter {
                            expr,
                            index: self.index
                        }
                    )?;
                }
                write!(f, ")")
            }
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
enum EvalResult {
    /// The evaluated value of the expression.
    Value { value: isize },

    /// The count of unbound parameters in the expression.
    UnboundParams {
        /// The count of unbound parameters.
        count: usize,
    },
}

/// Result of `SizeExpr::try_match()`.
///
/// All values are borrowed from the original expression,
/// so they are valid as long as the expression is valid.
///
/// Runtime errors (malformed expressions, too-many unbound parameters, etc.)
/// are not represented here; and are returned as `Err(String)` from
/// `try_match`.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum MatchResult {
    /// All params bound and expression equals target.
    Match,

    /// Expression value does not match the target.
    Conflict,

    /// Expression can be solved for a single unbound param.
    ParamConstraint {
        /// The id of the parameter.
        id: usize,

        /// The value the parameter must take to satisfy the expression.
        value: isize,
    },
}

impl<'a> DimExpr<'a> {
    /// Evaluate an expression.
    ///
    /// ## Arguments
    ///
    /// - `env` - the binding environment.
    ///
    /// ## Returns
    ///
    /// A `TryEvalResult`:
    /// * `Value(value)` - the evaluated value of the expression.
    /// * `UnboundParams(count)` - the count of unbound parameters.
    #[must_use]
    fn try_eval(
        &self,
        env: &[Option<isize>],
    ) -> EvalResult {
        #[inline(always)]
        fn reduce_children<'a>(
            exprs: &'a [DimExpr<'a>],
            env: &[Option<isize>],
            zero: isize,
            op: fn(&mut isize, isize),
        ) -> EvalResult {
            let mut value = zero;
            let mut count = 0;
            for expr in exprs {
                match expr.try_eval(env) {
                    EvalResult::Value { value: v } => op(&mut value, v),
                    EvalResult::UnboundParams { count: c } => count += c,
                }
            }
            if count == 0 {
                EvalResult::Value { value }
            } else {
                EvalResult::UnboundParams { count }
            }
        }

        match self {
            DimExpr::Param { id } => match env[*id] {
                Some(value) => EvalResult::Value { value },
                None => EvalResult::UnboundParams { count: 1 },
            },
            DimExpr::Negate { child } => match child.try_eval(env) {
                EvalResult::Value { value } => EvalResult::Value { value: -value },
                x => x,
            },
            DimExpr::Pow { base: child, exp } => match child.try_eval(env) {
                EvalResult::Value { value } => EvalResult::Value {
                    value: value.pow(*exp as u32),
                },
                x => x,
            },
            DimExpr::Sum { children } => {
                reduce_children(children, env, 0, |tmp, value| *tmp += value)
            }
            DimExpr::Prod { children } => {
                reduce_children(children, env, 1, |tmp, value| *tmp *= value)
            }
        }
    }

    /// Reconcile an expression against a target value.
    ///
    /// ## Arguments
    ///
    /// * `target`: The target value to match.
    /// * `env`: The environment containing bindings for parameters.
    ///
    /// ## Returns
    ///
    /// * `Ok(MatchResult::Match)` if the expression matches the target.
    /// * `Ok(MatchResult::MissMatch)` if the expression does not match the
    ///   target.
    /// * `Ok(MatchResult::Constraint(name, value))` if the expression can be
    ///   solved for a single unbound parameter.
    /// * `Ok(MatchResult::UnderConstrained)` if the expression cannot be solved
    ///   with the current bindings.
    #[must_use]
    pub fn try_match(
        &self,
        target: isize,
        env: &[Option<isize>],
    ) -> Result<MatchResult, &'static str> {
        #[inline(always)]
        fn reduce_children<'a>(
            exprs: &'a [DimExpr<'a>],
            env: &[Option<isize>],
            zero: isize,
            op: fn(&mut isize, isize),
        ) -> Result<(isize, Option<&'a DimExpr<'a>>), &'static str> {
            let mut partial_value: isize = zero;
            let mut rem_expr = None;
            // At most one child can be unbound, and by only one parameter.
            for expr in exprs {
                match expr.try_eval(env) {
                    EvalResult::Value { value } => op(&mut partial_value, value),
                    EvalResult::UnboundParams { count } => {
                        if count == 1 && rem_expr.is_none() {
                            rem_expr = Some(expr);
                        } else {
                            return Err("Too many unbound params.");
                        }
                    }
                }
            }
            // If the monoid is fully bound, then return (value, None);
            // Otherwise, return (partial_value, expr).
            Ok((partial_value, rem_expr))
        }

        match self {
            DimExpr::Param { id } => {
                let id = *id;
                if let Some(value) = env[id] {
                    if value == target {
                        Ok(MatchResult::Match)
                    } else {
                        Ok(MatchResult::Conflict)
                    }
                } else {
                    Ok(MatchResult::ParamConstraint { id, value: target })
                }
            }
            DimExpr::Negate { child } => child.try_match(-target, env),
            DimExpr::Pow { base: child, exp } => match maybe_iroot(target, *exp) {
                Some(root) => child.try_match(root, env),
                None => Err("No integer solution."),
            },
            DimExpr::Sum { children } => {
                let (value, rem) = reduce_children(children, env, 0, |tmp, value| *tmp += value)?;
                if let Some(expr) = rem {
                    expr.try_match(target - value, env)
                } else if value == target {
                    Ok(MatchResult::Match)
                } else {
                    Ok(MatchResult::Conflict)
                }
            }
            DimExpr::Prod { children } => {
                let (value, rem) = reduce_children(children, env, 1, |tmp, value| *tmp *= value)?;
                if let Some(expr) = rem {
                    if target % value != 0 {
                        // Non-integer solution
                        return Err("No integer solution.");
                    }
                    expr.try_match(target / value, env)
                } else if value == target {
                    Ok(MatchResult::Match)
                } else {
                    Ok(MatchResult::Conflict)
                }
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use alloc::{
        format,
        string::String,
    };

    use super::*;

    #[test]
    fn test_format() {
        static INDEX: [&str; 5] = ["a", "b", "c", "d", "e"];

        fn fmt(expr: &DimExpr) -> String {
            format!(
                "{}",
                ExprDisplayAdapter {
                    expr: &expr,
                    index: &INDEX
                }
            )
        }

        assert_eq!(
            fmt(&DimExpr::Param {
                id: INDEX
                    .iter()
                    .enumerate()
                    .find_map(|(i, k)| if *k == "a" { Some(i) } else { None })
                    .unwrap()
            }),
            "a"
        );

        let _expr = DimExpr::Prod {
            children: &[
                DimExpr::Param { id: 0 },
                DimExpr::Param { id: 1 },
                DimExpr::Sum {
                    children: &[
                        DimExpr::Param { id: 2 },
                        DimExpr::Pow {
                            base: &DimExpr::Param { id: 3 },
                            exp: 2,
                        },
                        DimExpr::Negate {
                            child: &DimExpr::Param { id: 4 },
                        },
                    ],
                },
            ],
        };
        assert_eq!(fmt(&_expr), "(a*b*(c+(d^2)+(-e)))");
    }

    #[test]
    fn test_eval_param() {
        let env = [Some(5), None];

        let expr = DimExpr::Param { id: 0 };
        assert_eq!(expr.try_eval(&env), EvalResult::Value { value: 5 });
        assert_eq!(expr.try_match(5, &env), Ok(MatchResult::Match));
        assert_eq!(expr.try_match(42, &env), Ok(MatchResult::Conflict));

        let expr = DimExpr::Param { id: 1 };
        assert_eq!(expr.try_eval(&env), EvalResult::UnboundParams { count: 1 });
        assert_eq!(
            expr.try_match(5, &env),
            Ok(MatchResult::ParamConstraint { id: 1, value: 5 })
        );
    }

    #[test]
    fn try_eval_negate() {
        let expr = DimExpr::Negate {
            child: &DimExpr::Param { id: 0 },
        };

        let env = [Some(5)];
        assert_eq!(expr.try_eval(&env), EvalResult::Value { value: -5 });
        assert_eq!(expr.try_match(-5, &env), Ok(MatchResult::Match));
        assert_eq!(expr.try_match(42, &env), Ok(MatchResult::Conflict));

        let env = [None];
        assert_eq!(expr.try_eval(&env), EvalResult::UnboundParams { count: 1 });
        assert_eq!(
            expr.try_match(-5, &env),
            Ok(MatchResult::ParamConstraint { id: 0, value: 5 })
        );
    }

    #[test]
    fn try_eval_pow() {
        let expr = DimExpr::Pow {
            base: &DimExpr::Param { id: 0 },
            exp: 3,
        };

        let env = [Some(5)];
        assert_eq!(expr.try_eval(&env), EvalResult::Value { value: 125 });
        assert_eq!(expr.try_match(125, &env), Ok(MatchResult::Match));
        assert_eq!(expr.try_match(42, &env), Err("No integer solution."));

        let env = [None];
        assert_eq!(expr.try_eval(&env), EvalResult::UnboundParams { count: 1 });
        assert_eq!(
            expr.try_match(125, &env),
            Ok(MatchResult::ParamConstraint { id: 0, value: 5 })
        );
    }

    #[test]
    fn test_eval_sum() {
        let expr = DimExpr::Sum {
            children: &[
                DimExpr::Param { id: 0 },
                DimExpr::Param { id: 1 },
                DimExpr::Param { id: 2 },
                DimExpr::Param { id: 3 },
            ],
        };

        let env = [Some(2), Some(3), Some(4), Some(5)];
        assert_eq!(expr.try_eval(&env), EvalResult::Value { value: 14 });
        assert_eq!(expr.try_match(14, &env), Ok(MatchResult::Match));
        assert_eq!(expr.try_match(42, &env), Ok(MatchResult::Conflict));

        let env = [Some(2), Some(3), None, Some(5)];
        assert_eq!(expr.try_eval(&env), EvalResult::UnboundParams { count: 1 });
        assert_eq!(
            expr.try_match(14, &env),
            Ok(MatchResult::ParamConstraint { id: 2, value: 4 })
        );

        let env = [Some(5), Some(3), None, None];
        assert_eq!(expr.try_eval(&env), EvalResult::UnboundParams { count: 2 });
        assert_eq!(expr.try_match(14, &env), Err("Too many unbound params."));
    }

    #[test]
    fn test_eval_prod() {
        let expr = DimExpr::Prod {
            children: &[
                DimExpr::Param { id: 0 },
                DimExpr::Param { id: 1 },
                DimExpr::Param { id: 2 },
                DimExpr::Param { id: 3 },
            ],
        };

        let env = [Some(2), Some(3), Some(4), Some(5)];
        assert_eq!(expr.try_eval(&env), EvalResult::Value { value: 120 });
        assert_eq!(expr.try_match(120, &env), Ok(MatchResult::Match));
        assert_eq!(expr.try_match(42, &env), Ok(MatchResult::Conflict));

        let env = [Some(2), Some(3), None, Some(5)];
        assert_eq!(expr.try_eval(&env), EvalResult::UnboundParams { count: 1 });
        assert_eq!(
            expr.try_match(120, &env),
            Ok(MatchResult::ParamConstraint { id: 2, value: 4 })
        );

        let env = [Some(1), Some(5), None, Some(5)];
        assert_eq!(expr.try_match(40, &env), Err("No integer solution."));

        let env = [Some(5), Some(3), None, None];
        assert_eq!(expr.try_eval(&env), EvalResult::UnboundParams { count: 2 });
        assert_eq!(expr.try_match(120, &env), Err("Too many unbound params."));
    }
}