Skip to content
Snippets Groups Projects

update Resize operator

Merged Maxence Naud requested to merge feat_enhance_operator_resize_support into dev
1 file
+ 7
7
Compare changes
  • Side-by-side
  • Inline
@@ -331,32 +331,32 @@ T InterpolationCPU::interpolate(const std::vector<float> &coordsToInterpolate,
template int8_t InterpolationCPU::interpolate<int8_t>(
const std::vector<float> &originalCoords,
const std::set<Point<int8_t>> &points,
const Mode interpMode = Interpolation::Mode::Linear);
const Mode interpMode);
template int16_t InterpolationCPU::interpolate<int16_t>(
const std::vector<float> &originalCoords,
const std::set<Point<int16_t>> &points,
const Mode interpMode = Interpolation::Mode::Linear);
const Mode interpMode);
template int32_t InterpolationCPU::interpolate<int32_t>(
const std::vector<float> &originalCoords,
const std::set<Point<int32_t>> &points,
const Mode interpMode = Interpolation::Mode::Linear);
const Mode interpMode);
template int64_t InterpolationCPU::interpolate<int64_t>(
const std::vector<float> &originalCoords,
const std::set<Point<int64_t>> &points,
const Mode interpMode = Interpolation::Mode::Linear);
const Mode interpMode);
template half_float::half InterpolationCPU::interpolate<half_float::half>(
const std::vector<float> &originalCoords,
const std::set<Point<half_float::half>> &points,
const Mode interpMode = Interpolation::Mode::Linear);
const Mode interpMode);
template float InterpolationCPU::interpolate<float>(
const std::vector<float> &originalCoords,
const std::set<Point<float>> &points,
const Mode interpMode = Interpolation::Mode::Linear);
const Mode interpMode);
template double InterpolationCPU::interpolate<double>(
const std::vector<float> &originalCoords,
const std::set<Point<double>> &points,
const Mode interpMode = Interpolation::Mode::Linear);
const Mode interpMode);
////////////////////////////////////////////////////////////////////
// INTERPOLATE LINEAR (& its associated recursive function)
Loading