-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scaling with nearest neighbour and bilinear interpolation.
* upsampling - migrated to cpp * bilinear resize implementation & test cases. * upsampling testcases enhanced.
- Loading branch information
1 parent
54e3275
commit ed38ba4
Showing
11 changed files
with
485 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
"""Common system utilities""" | ||
from __future__ import absolute_import as _abs | ||
import math | ||
import numpy as np | ||
|
||
|
||
def bilinear_weights(image, new_h, new_w, layout): | ||
""" Helper function to generate weights for bilinear scaling """ | ||
|
||
if layout == "NHWC": | ||
(height, width) = image.shape[1:3] | ||
elif layout == "NCHW": | ||
(height, width) = image.shape[2:] | ||
else: | ||
raise NotImplementedError( | ||
'Layout not supported {} '.format(layout)) | ||
|
||
x_ratio = (width-1)/new_w | ||
y_ratio = (height-1)/new_h | ||
|
||
def _bilinear_interpolation(y, x): | ||
x_coord = math.floor(x_ratio * x) | ||
y_coord = math.floor(y_ratio * y) | ||
x_diff = (x_ratio * x) - x_coord | ||
y_diff = (y_ratio * y) - y_coord | ||
|
||
return [y_coord, x_coord, y_diff, x_diff] | ||
|
||
weights = np.empty([new_h, new_w, 4], dtype='float32') | ||
|
||
for i in range(new_h): | ||
for j in range(new_w): | ||
weights[i][j] = _bilinear_interpolation(i, j) | ||
return weights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
/*! | ||
* Copyright (c) 2017 by Contributors | ||
* \file topi/transform.h | ||
* \brief Transform op constructors | ||
*/ | ||
#ifndef TOPI_NN_SCALE_H_ | ||
#define TOPI_NN_SCALE_H_ | ||
|
||
#include <string> | ||
#include <vector> | ||
#include <iterator> | ||
#include <algorithm> | ||
|
||
#include "topi/tags.h" | ||
#include "topi/detail/ravel_unravel.h" | ||
#include "topi/detail/constant_utils.h" | ||
#include "tvm/tvm.h" | ||
|
||
namespace topi { | ||
namespace nn { | ||
using namespace tvm; | ||
|
||
/*! | ||
* \brief Resize given tensor to given shape using nearest neighbour for NHWC | ||
* | ||
* \param inputs The input tensor array. | ||
* \param shape Output shape to scale to. | ||
* \param name Name of the operation | ||
* \param tag The tag to mark the operation | ||
* | ||
* \return A Tensor resized to given shape | ||
*/ | ||
inline Tensor scale_nn_nhwc(const Array<Tensor>& inputs, | ||
Array<Expr> shape, | ||
std::string name = "tensor", | ||
std::string tag = kInjective) { | ||
Array<Expr> out_shape; | ||
out_shape.push_back(inputs[0]->shape[0]); | ||
out_shape.push_back(shape[0]); | ||
out_shape.push_back(shape[1]); | ||
out_shape.push_back(inputs[0]->shape[3]); | ||
|
||
Expr h_scale = shape[0] / inputs[0]->shape[1]; | ||
Expr w_scale = shape[1] / inputs[0]->shape[2]; | ||
|
||
return compute( | ||
out_shape, [&](const Array<Var>& indices) { | ||
Array<Expr> idx; | ||
idx.push_back(indices[0]); | ||
idx.push_back(indices[1] / h_scale); | ||
idx.push_back(indices[2] / w_scale); | ||
idx.push_back(indices[3]); | ||
|
||
return inputs[0](idx); | ||
}, name, tag); | ||
} | ||
|
||
/*! | ||
* \brief Resize given tensor to given shape using nearest neighbour for NCHW | ||
* | ||
* \param inputs The input tensor array. | ||
* \param shape Output shape to scale to. | ||
* \param name Name of the operation | ||
* \param tag The tag to mark the operation | ||
* | ||
* \return A Tensor resized to given shape | ||
*/ | ||
inline Tensor scale_nn_nchw(const Array<Tensor>& inputs, | ||
Array<Expr> shape, | ||
std::string name = "tensor", | ||
std::string tag = kInjective) { | ||
Array<Expr> out_shape; | ||
out_shape.push_back(inputs[0]->shape[0]); | ||
out_shape.push_back(inputs[0]->shape[1]); | ||
out_shape.push_back(shape[0]); | ||
out_shape.push_back(shape[1]); | ||
|
||
Expr h_scale = shape[0] / inputs[0]->shape[2]; | ||
Expr w_scale = shape[1] / inputs[0]->shape[3]; | ||
|
||
return compute( | ||
out_shape, [&](const Array<Var>& indices) { | ||
Array<Expr> idx; | ||
idx.push_back(indices[0]); | ||
idx.push_back(indices[1]); | ||
idx.push_back(indices[2] / h_scale); | ||
idx.push_back(indices[3] / w_scale); | ||
|
||
return inputs[0](idx); | ||
}, name, tag); | ||
} | ||
|
||
/*! | ||
* \brief Resize given tensor to given shape using nearest neighbour | ||
* | ||
* \param inputs The input tensor array. | ||
* \param shape Output shape to scale to. | ||
* \param layout input layout | ||
* \param name Name of the operation | ||
* \param tag The tag to mark the operation | ||
* | ||
* \return A Tensor resized to given shape | ||
*/ | ||
inline Tensor scale_nn(const Array<Tensor>& inputs, | ||
Array<Expr> shape, | ||
std::string layout = "NCHW", | ||
std::string name = "tensor", | ||
std::string tag = kInjective) { | ||
if (layout == "NHWC") { | ||
return scale_nn_nhwc(inputs, shape); | ||
} else { | ||
return scale_nn_nchw(inputs, shape); | ||
} | ||
} | ||
|
||
/*! | ||
* \brief Resize given tensor to given shape using bilinear interpolation for NHWC | ||
* | ||
* \param inputs The input tensor array. | ||
* \param shape Output shape to scale to. | ||
* \param name Name of the operation | ||
* \param tag The tag to mark the operation | ||
* | ||
* \return A Tensor resized to given shape | ||
*/ | ||
inline Tensor scale_bilinear_nhwc(const Array<Tensor>& inputs, | ||
Array<Expr> shape, | ||
std::string name = "tensor", | ||
std::string tag = kInjective) { | ||
Array<Expr> out_shape; | ||
out_shape.push_back(inputs[0]->shape[0]); | ||
out_shape.push_back(shape[0]); | ||
out_shape.push_back(shape[1]); | ||
out_shape.push_back(inputs[0]->shape[3]); | ||
|
||
Array<Expr> split_ind; | ||
split_ind.push_back(make_const(UInt(32), 2)); | ||
|
||
Array<Tensor> weights = split(inputs[1], split_ind, 2); | ||
|
||
Tensor coords = cast(weights[0], Int(32)); | ||
|
||
Expr cone = make_const(UInt(32), 1); | ||
|
||
return compute( | ||
out_shape, [&](const Array<Var>& indices) { | ||
auto y1 = coords(indices[1], indices[2], 0); | ||
auto x1 = coords(indices[1], indices[2], 1); | ||
auto h = weights[1](indices[1], indices[2], 0); | ||
auto w = weights[1](indices[1], indices[2], 1); | ||
|
||
auto A = inputs[0](indices[0], y1, x1, indices[3]); | ||
auto B = inputs[0](indices[0], y1, x1+cone, indices[3]); | ||
auto C = inputs[0](indices[0], y1+cone, x1, indices[3]); | ||
auto D = inputs[0](indices[0], y1+cone, x1+cone, indices[3]); | ||
|
||
return (A*(cone-w)*(cone-h) + B*(w)*(cone-h) + C*(h)*(cone-w) + D*w*h); | ||
}, name, tag); | ||
} | ||
|
||
/*! | ||
* \brief Resize given tensor to given shape using bilinear interpolation for NCHW | ||
* | ||
* \param inputs The input tensor array. | ||
* \param shape Output shape to scale to. | ||
* \param name Name of the operation | ||
* \param tag The tag to mark the operation | ||
* | ||
* \return A Tensor resized to given shape | ||
*/ | ||
inline Tensor scale_bilinear_nchw(const Array<Tensor>& inputs, | ||
Array<Expr> shape, | ||
std::string name = "tensor", | ||
std::string tag = kInjective) { | ||
Array<Expr> out_shape; | ||
out_shape.push_back(inputs[0]->shape[0]); | ||
out_shape.push_back(inputs[0]->shape[1]); | ||
out_shape.push_back(shape[0]); | ||
out_shape.push_back(shape[1]); | ||
|
||
Array<Expr> split_ind; | ||
split_ind.push_back(make_const(UInt(32), 2)); | ||
|
||
Array<Tensor> weights = split(inputs[1], split_ind, 2); | ||
Tensor coords = cast(weights[0], Int(32)); | ||
|
||
return compute( | ||
out_shape, [&](const Array<Var>& indices) { | ||
auto y1 = coords(indices[2], indices[3], 0); | ||
auto x1 = coords(indices[2], indices[3], 1); | ||
auto h = weights[1](indices[2], indices[3], 0); | ||
auto w = weights[1](indices[2], indices[3], 1); | ||
|
||
auto A = inputs[0](indices[0], indices[1], y1, x1); | ||
auto B = inputs[0](indices[0], indices[1], y1, x1+1); | ||
auto C = inputs[0](indices[0], indices[1], y1+1, x1); | ||
auto D = inputs[0](indices[0], indices[1], y1+1, x1+1); | ||
|
||
return (A*(1-w)*(1-h) + B*(w)*(1-h) + C*(h)*(1-w) + D*w*h); | ||
}, name, tag); | ||
} | ||
|
||
/*! | ||
* \brief Resize given tensor to given shape using bilinear interpolation | ||
* | ||
* \param inputs The input tensor array. | ||
* \param shape Output shape to scale to. | ||
* \param layout input layout | ||
* \param name Name of the operation | ||
* \param tag The tag to mark the operation | ||
* | ||
* \return A Tensor resized to given shape | ||
*/ | ||
inline Tensor scale_bilinear(const Array<Tensor>& inputs, | ||
Array<Expr> shape, | ||
std::string layout = "NCHW", | ||
std::string name = "tensor", | ||
std::string tag = kInjective) { | ||
Tensor ret; | ||
|
||
if (layout == "NHWC") { | ||
ret = scale_bilinear_nhwc(inputs, shape); | ||
} else { | ||
ret = scale_bilinear_nchw(inputs, shape); | ||
} | ||
|
||
return cast(ret, inputs[0]->dtype); | ||
} | ||
|
||
/*! | ||
* \brief Resize given tensor to given shape | ||
* | ||
* \param inputs The input tensor array. | ||
* Bilinear will have 2 inputs one being the weights. | ||
* \param shape Output shape to scale to. | ||
* \param layout input layout | ||
* \param mode Angorithm to use (NN / BILINEAR) | ||
* \param name Name of the operation | ||
* \param tag The tag to mark the operation | ||
* | ||
* \return A Tensor resized to given shape | ||
*/ | ||
inline Tensor scale(const Array<Tensor>& inputs, | ||
Array<Expr> shape, | ||
std::string layout = "NCHW", | ||
std::string mode = "BILINEAR", | ||
std::string name = "tensor", | ||
std::string tag = kInjective) { | ||
if (mode == "NN") { | ||
return scale_nn(inputs, shape, layout); | ||
} else { | ||
return scale_bilinear(inputs, shape, layout); | ||
} | ||
} | ||
|
||
} // namespace nn | ||
} // namespace topi | ||
#endif // TOPI_NN_SCALE_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
"""TVM operator bilinear scaling compute.""" | ||
from __future__ import absolute_import | ||
import topi | ||
|
||
|
||
def bilinear_scale(data, weights, out_size, layout="NCHW"): | ||
"""Perform bilinear scaling on the data. | ||
Parameters | ||
---------- | ||
data : tvm.Tensor | ||
4-D with shape [batch, channel, in_height, in_width] | ||
or [batch, in_height, in_width, channel] | ||
weights: tvm.Tensor | ||
1-D with weights [x, y, x_diff, y_diff] | ||
helper function tvm.contrib.image.bilinear_weights available to generate this. | ||
layout: string | ||
either "NCHW" or "NHWC" | ||
out_size: Tuple | ||
Tuple of (out_height, out_width) | ||
Returns | ||
------- | ||
output : tvm.Tensor | ||
4-D with shape [batch, channel, out_height, out_width] | ||
or [batch, out_height, out_width, channel] | ||
""" | ||
return topi.cpp.nn.scale([data, weights], out_size, layout, "BILINEAR") |
Oops, something went wrong.