cubek-interpolate 0.2.0

CubeK: Interpolation
Documentation
1
2
3
4
5
6
7
8
9
use crate::definition::InterpolateOptions;

#[derive(Clone, Debug)]
/// Description of an interpolate problem to solve, regardless of actual data
pub struct InterpolateProblem {
    pub input_shape: [usize; 4],
    pub output_size: [usize; 2],
    pub options: InterpolateOptions,
}