pub trait InputGenerator<K, Inputs>: 'static {
// Required method
fn generate(&self, key: &K, inputs: &Inputs) -> Inputs;
}Expand description
A function that generates the input for autotuning passes
pub trait InputGenerator<K, Inputs>: 'static {
// Required method
fn generate(&self, key: &K, inputs: &Inputs) -> Inputs;
}A function that generates the input for autotuning passes