tensorlogic-compiler 0.1.0-rc.1

Compiler for transforming logic expressions into tensor computation graphs
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
//! Set theory operations compilation.
//!
//! This module implements compilation of set-theoretic operations into tensor
//! computations. Sets are represented as characteristic functions (indicator tensors)
//! over domains, where 1 indicates membership and 0 indicates non-membership.
//!
//! # Representation
//!
//! A set S ⊆ Domain is represented as a tensor χ_S : Domain → {0,1} where:
//! - χ_S(x) = 1 if x ∈ S
//! - χ_S(x) = 0 if x ∉ S
//!
//! This characteristic function representation allows efficient tensor-based
//! set operations using element-wise operations and reductions.
//!
//! # Operations
//!
//! | Set Operation | Tensor Equivalent | Notes |
//! |--------------|-------------------|-------|
//! | x ∈ S | index(χ_S, x) | Element lookup |
//! | A ∪ B | max(χ_A, χ_B) | Or element-wise OR for Boolean |
//! | A ∩ B | min(χ_A, χ_B) | Or element-wise AND for Boolean |
//! | A \ B | χ_A * (1 - χ_B) | Element-wise masking |
//! | \|S\| | sum(χ_S) | Count of 1s in characteristic function |
//! | ∅ | zeros(domain_size) | All zeros tensor |
//! | {x : D \| P(x)} | P(x) for x in D | Predicate as characteristic function |

use anyhow::{bail, Result};
use tensorlogic_ir::{EinsumGraph, EinsumNode, TLExpr};

use crate::compile::compile_expr;
use crate::context::{CompileState, CompilerContext};

/// Compile set membership: elem ∈ set
///
/// For a set represented as a characteristic function χ_S over domain D,
/// membership elem ∈ S is compiled as χ_S[elem], which is the indicator
/// value at that element.
///
/// If elem is a constant, this becomes a tensor indexing operation.
/// If elem is a variable, this becomes an element-wise predicate check.
///
/// # Example
///
/// ```text
/// Let S = {x : Person | age(x) > 18}
/// Then: alice ∈ S compiles to age(alice) > 18
/// ```
pub(crate) fn compile_set_membership(
    element: &TLExpr,
    set: &TLExpr,
    ctx: &mut CompilerContext,
    graph: &mut EinsumGraph,
) -> Result<CompileState> {
    // Compile the set expression (should yield a characteristic function)
    let set_state = compile_expr(set, ctx, graph)?;

    // Compile the element expression
    let elem_state = compile_expr(element, ctx, graph)?;

    // Set membership is the element-wise product: elem_indicator * set_characteristic
    // This effectively performs an AND operation to check if the element is in the set

    // Compute output axes: union of both operands' axes
    let mut output_axes = String::new();
    let mut seen = std::collections::HashSet::new();

    for c in elem_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    for c in set_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    let result_name = ctx.fresh_temp();
    let result_idx = graph.add_tensor(result_name);

    // Use einsum for multiplication with broadcasting
    let spec = if output_axes.is_empty() {
        ",->"
    } else if elem_state.axes == set_state.axes {
        // Same axes - direct element-wise multiplication
        graph.add_node(EinsumNode::elem_binary(
            "multiply",
            elem_state.tensor_idx,
            set_state.tensor_idx,
            result_idx,
        ))?;

        return Ok(CompileState {
            tensor_idx: result_idx,
            axes: output_axes,
        });
    } else {
        // Different axes - use einsum for broadcasting
        &format!("{},{}->{}", elem_state.axes, set_state.axes, output_axes)
    };

    graph.add_node(EinsumNode::einsum(
        spec,
        vec![elem_state.tensor_idx, set_state.tensor_idx],
        vec![result_idx],
    ))?;

    Ok(CompileState {
        tensor_idx: result_idx,
        axes: output_axes,
    })
}

/// Compile set union: A ∪ B
///
/// Union of two sets represented as characteristic functions:
/// χ_{A∪B}(x) = max(χ_A(x), χ_B(x))
pub(crate) fn compile_set_union(
    left: &TLExpr,
    right: &TLExpr,
    ctx: &mut CompilerContext,
    graph: &mut EinsumGraph,
) -> Result<CompileState> {
    let mut left_state = compile_expr(left, ctx, graph)?;
    let mut right_state = compile_expr(right, ctx, graph)?;

    // Compute output axes: union of both sets' axes
    let mut output_axes = String::new();
    let mut seen = std::collections::HashSet::new();

    for c in left_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    for c in right_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    // Broadcast operands to match output_axes if needed
    if !left_state.axes.is_empty() && left_state.axes != output_axes {
        let broadcast_spec = format!("{}->{}", left_state.axes, output_axes);
        let broadcast_name = ctx.fresh_temp();
        let broadcast_idx = graph.add_tensor(broadcast_name);
        graph.add_node(EinsumNode::einsum(
            broadcast_spec,
            vec![left_state.tensor_idx],
            vec![broadcast_idx],
        ))?;
        left_state = CompileState {
            tensor_idx: broadcast_idx,
            axes: output_axes.clone(),
        };
    }

    if !right_state.axes.is_empty() && right_state.axes != output_axes {
        let broadcast_spec = format!("{}->{}", right_state.axes, output_axes);
        let broadcast_name = ctx.fresh_temp();
        let broadcast_idx = graph.add_tensor(broadcast_name);
        graph.add_node(EinsumNode::einsum(
            broadcast_spec,
            vec![right_state.tensor_idx],
            vec![broadcast_idx],
        ))?;
        right_state = CompileState {
            tensor_idx: broadcast_idx,
            axes: output_axes.clone(),
        };
    }

    // Apply element-wise max
    let result_name = ctx.fresh_temp();
    let result_idx = graph.add_tensor(result_name);

    graph.add_node(EinsumNode::elem_binary(
        "max",
        left_state.tensor_idx,
        right_state.tensor_idx,
        result_idx,
    ))?;

    Ok(CompileState {
        tensor_idx: result_idx,
        axes: output_axes,
    })
}

/// Compile set intersection: A ∩ B
///
/// Intersection of two sets represented as characteristic functions:
/// χ_{A∩B}(x) = min(χ_A(x), χ_B(x))
pub(crate) fn compile_set_intersection(
    left: &TLExpr,
    right: &TLExpr,
    ctx: &mut CompilerContext,
    graph: &mut EinsumGraph,
) -> Result<CompileState> {
    let mut left_state = compile_expr(left, ctx, graph)?;
    let mut right_state = compile_expr(right, ctx, graph)?;

    // Compute output axes: union of both sets' axes
    let mut output_axes = String::new();
    let mut seen = std::collections::HashSet::new();

    for c in left_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    for c in right_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    // Broadcast operands to match output_axes if needed
    if !left_state.axes.is_empty() && left_state.axes != output_axes {
        let broadcast_spec = format!("{}->{}", left_state.axes, output_axes);
        let broadcast_name = ctx.fresh_temp();
        let broadcast_idx = graph.add_tensor(broadcast_name);
        graph.add_node(EinsumNode::einsum(
            broadcast_spec,
            vec![left_state.tensor_idx],
            vec![broadcast_idx],
        ))?;
        left_state = CompileState {
            tensor_idx: broadcast_idx,
            axes: output_axes.clone(),
        };
    }

    if !right_state.axes.is_empty() && right_state.axes != output_axes {
        let broadcast_spec = format!("{}->{}", right_state.axes, output_axes);
        let broadcast_name = ctx.fresh_temp();
        let broadcast_idx = graph.add_tensor(broadcast_name);
        graph.add_node(EinsumNode::einsum(
            broadcast_spec,
            vec![right_state.tensor_idx],
            vec![broadcast_idx],
        ))?;
        right_state = CompileState {
            tensor_idx: broadcast_idx,
            axes: output_axes.clone(),
        };
    }

    // Apply element-wise min
    let result_name = ctx.fresh_temp();
    let result_idx = graph.add_tensor(result_name);

    graph.add_node(EinsumNode::elem_binary(
        "min",
        left_state.tensor_idx,
        right_state.tensor_idx,
        result_idx,
    ))?;

    Ok(CompileState {
        tensor_idx: result_idx,
        axes: output_axes,
    })
}

/// Compile set difference: A \ B
///
/// Set difference (relative complement) of two sets:
/// χ_{A\B}(x) = χ_A(x) * (1 - χ_B(x))
pub(crate) fn compile_set_difference(
    left: &TLExpr,
    right: &TLExpr,
    ctx: &mut CompilerContext,
    graph: &mut EinsumGraph,
) -> Result<CompileState> {
    let mut left_state = compile_expr(left, ctx, graph)?;
    let mut right_state = compile_expr(right, ctx, graph)?;

    // Compute output axes
    let mut output_axes = String::new();
    let mut seen = std::collections::HashSet::new();

    for c in left_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    for c in right_state.axes.chars() {
        if seen.insert(c) {
            output_axes.push(c);
        }
    }

    // Broadcast operands if needed
    if !left_state.axes.is_empty() && left_state.axes != output_axes {
        let broadcast_spec = format!("{}->{}", left_state.axes, output_axes);
        let broadcast_name = ctx.fresh_temp();
        let broadcast_idx = graph.add_tensor(broadcast_name);
        graph.add_node(EinsumNode::einsum(
            broadcast_spec,
            vec![left_state.tensor_idx],
            vec![broadcast_idx],
        ))?;
        left_state = CompileState {
            tensor_idx: broadcast_idx,
            axes: output_axes.clone(),
        };
    }

    if !right_state.axes.is_empty() && right_state.axes != output_axes {
        let broadcast_spec = format!("{}->{}", right_state.axes, output_axes);
        let broadcast_name = ctx.fresh_temp();
        let broadcast_idx = graph.add_tensor(broadcast_name);
        graph.add_node(EinsumNode::einsum(
            broadcast_spec,
            vec![right_state.tensor_idx],
            vec![broadcast_idx],
        ))?;
        right_state = CompileState {
            tensor_idx: broadcast_idx,
            axes: output_axes.clone(),
        };
    }

    // Compute (1 - B)
    let not_right_name = ctx.fresh_temp();
    let not_right_idx = graph.add_tensor(not_right_name);
    graph.add_node(EinsumNode::elem_unary(
        "one_minus",
        right_state.tensor_idx,
        not_right_idx,
    ))?;

    // Multiply A * (1 - B)
    let result_name = ctx.fresh_temp();
    let result_idx = graph.add_tensor(result_name);
    graph.add_node(EinsumNode::elem_binary(
        "multiply",
        left_state.tensor_idx,
        not_right_idx,
        result_idx,
    ))?;

    Ok(CompileState {
        tensor_idx: result_idx,
        axes: output_axes,
    })
}

/// Compile set cardinality: |S|
///
/// Cardinality of a set represented as a characteristic function:
/// |S| = sum(χ_S)
pub(crate) fn compile_set_cardinality(
    set: &TLExpr,
    ctx: &mut CompilerContext,
    graph: &mut EinsumGraph,
) -> Result<CompileState> {
    let set_state = compile_expr(set, ctx, graph)?;

    // Cardinality is the sum of the characteristic function
    let result_name = ctx.fresh_temp();
    let result_idx = graph.add_tensor(result_name);

    // Extract axes to reduce
    let axes_to_reduce: Vec<usize> = set_state
        .axes
        .chars()
        .map(|c| (c as u8 - b'a') as usize)
        .collect();

    graph.add_node(EinsumNode::reduce(
        "sum",
        axes_to_reduce,
        set_state.tensor_idx,
        result_idx,
    ))?;

    // Result is a scalar (no axes)
    Ok(CompileState {
        tensor_idx: result_idx,
        axes: String::new(),
    })
}

/// Compile empty set: ∅
///
/// The empty set is represented as a constant zero scalar.
pub(crate) fn compile_empty_set(
    _ctx: &mut CompilerContext,
    graph: &mut EinsumGraph,
) -> Result<CompileState> {
    // Empty set is a constant zero tensor
    let tensor_name = "const_0.0";
    let tensor_idx = graph.add_tensor(tensor_name);

    // The backend will initialize this as a zero tensor
    // No node is needed - just the tensor definition

    // Empty set has no axes (it's a scalar)
    Ok(CompileState {
        tensor_idx,
        axes: String::new(),
    })
}

/// Compile set comprehension: { var : domain | condition }
///
/// Set comprehension creates a set by filtering elements from a domain
/// based on a condition. The characteristic function is the condition
/// predicate evaluated over the domain.
pub(crate) fn compile_set_comprehension(
    var: &str,
    domain: &str,
    condition: &TLExpr,
    ctx: &mut CompilerContext,
    graph: &mut EinsumGraph,
) -> Result<CompileState> {
    // Ensure the domain exists
    if !ctx.domains.contains_key(domain) {
        bail!(
            "Domain '{}' not found for set comprehension variable '{}'",
            domain,
            var
        );
    }

    // Bind the variable to the domain
    ctx.bind_var(var, domain)?;

    // Compile the condition (this is the characteristic function)
    let cond_state = compile_expr(condition, ctx, graph)?;

    // The result is the condition tensor itself (it's the characteristic function)
    Ok(cond_state)
}

#[cfg(test)]
mod tests {
    use super::*;
    use tensorlogic_ir::{TLExpr, Term};

    #[test]
    fn test_empty_set_compilation() {
        let mut ctx = CompilerContext::new();
        let mut graph = EinsumGraph::new();

        let result = compile_empty_set(&mut ctx, &mut graph).unwrap();

        // Empty set should be a scalar (no axes)
        assert!(result.axes.is_empty());
    }

    #[test]
    fn test_set_comprehension_compilation() {
        let mut ctx = CompilerContext::new();
        ctx.add_domain("Person", 100);
        let mut graph = EinsumGraph::new();

        // { x : Person | P(x) }
        let condition = TLExpr::pred("P", vec![Term::var("x")]);

        let result =
            compile_set_comprehension("x", "Person", &condition, &mut ctx, &mut graph).unwrap();

        // Should have axes for the variable
        assert!(!result.axes.is_empty());
    }

    #[test]
    fn test_set_union_compilation() {
        let mut ctx = CompilerContext::new();
        ctx.add_domain("Person", 100);
        let mut graph = EinsumGraph::new();

        // Create two set comprehensions
        let set_a = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("A", vec![Term::var("x")])),
        };

        let set_b = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("B", vec![Term::var("x")])),
        };

        let result = compile_set_union(&set_a, &set_b, &mut ctx, &mut graph).unwrap();

        // Should have axes
        assert!(!result.axes.is_empty());
    }

    #[test]
    fn test_set_intersection_compilation() {
        let mut ctx = CompilerContext::new();
        ctx.add_domain("Person", 100);
        let mut graph = EinsumGraph::new();

        let set_a = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("A", vec![Term::var("x")])),
        };

        let set_b = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("B", vec![Term::var("x")])),
        };

        let result = compile_set_intersection(&set_a, &set_b, &mut ctx, &mut graph).unwrap();

        assert!(!result.axes.is_empty());
    }

    #[test]
    fn test_set_difference_compilation() {
        let mut ctx = CompilerContext::new();
        ctx.add_domain("Person", 100);
        let mut graph = EinsumGraph::new();

        let set_a = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("A", vec![Term::var("x")])),
        };

        let set_b = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("B", vec![Term::var("x")])),
        };

        let result = compile_set_difference(&set_a, &set_b, &mut ctx, &mut graph).unwrap();

        assert!(!result.axes.is_empty());
    }

    #[test]
    fn test_set_cardinality_compilation() {
        let mut ctx = CompilerContext::new();
        ctx.add_domain("Person", 100);
        let mut graph = EinsumGraph::new();

        let set_expr = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("Adult", vec![Term::var("x")])),
        };

        let result = compile_set_cardinality(&set_expr, &mut ctx, &mut graph).unwrap();

        // Cardinality should be a scalar (no axes)
        assert!(result.axes.is_empty());
    }

    #[test]
    fn test_set_membership_compilation() {
        let mut ctx = CompilerContext::new();
        ctx.add_domain("Person", 100);
        let mut graph = EinsumGraph::new();

        // Create a set
        let set_expr = TLExpr::SetComprehension {
            var: "x".to_string(),
            domain: "Person".to_string(),
            condition: Box::new(TLExpr::pred("Adult", vec![Term::var("x")])),
        };

        // Element to check
        let elem = TLExpr::pred("IsAlice", vec![Term::var("y")]);

        let result = compile_set_membership(&elem, &set_expr, &mut ctx, &mut graph).unwrap();

        // Should have axes
        assert!(!result.axes.is_empty());
    }
}