vortex-pco 0.59.4

Vortex Pco array
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use vortex_array::arrays::SliceReduceAdaptor;
use vortex_array::compute::CastReduceAdaptor;
use vortex_array::optimizer::rules::ParentRuleSet;

use crate::PcoVTable;

pub(crate) static RULES: ParentRuleSet<PcoVTable> = ParentRuleSet::new(&[
    ParentRuleSet::lift(&SliceReduceAdaptor(PcoVTable)),
    ParentRuleSet::lift(&CastReduceAdaptor(PcoVTable)),
]);