vyre-conform 0.1.0

Conformance suite for vyre backends — proves byte-identical output to CPU reference
Documentation
1
2
3
4
5
6
7
8
9
10
//! Collection operation specifications (group-by, aggregate, etc.).

use crate::OpSpec;

/// All collection specs. Currently empty — will be populated as
/// collection ops are added to the vyre ISA.
#[inline]
pub fn specs() -> Vec<OpSpec> {
    Vec::new()
}