You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
graphengine/third_party/fwkacllib/inc/ops/transformation_ops.h

531 lines
19 KiB

5 years ago
/**
* Copyright 2019-2020 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef GE_OP_TRANSFORMATION_OPS_H
#define GE_OP_TRANSFORMATION_OPS_H
#include "graph/operator_reg.h"
5 years ago
namespace ge {
REG_OP(DepthwiseWeight4DTo6D)
.INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT32, DT_UINT16}))
.OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT32, DT_UINT16}))
.OP_END_FACTORY_REG(DepthwiseWeight4DTo6D)
REG_OP(DepthwiseWeight6DTo4D)
.INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT32, DT_UINT16}))
.OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT32, DT_UINT16}))
.ATTR(channel_size, Int, 16)
.OP_END_FACTORY_REG(DepthwiseWeight6DTo4D)
5 years ago
/**
*@brief Permutes the dimensions according to perm.\n
The returned tensor's dimension i will correspond to the input dimension perm[i].
*@par Inputs:
*x: A Tensor. Must be one of the following types: float16, float32, int8, int16, int32, int64, uint8, uint16, uint32, uint64.
*@par Attributes:
*perm: A permutation of the dimensions of "x".
*@par Outputs:
*y: A Tensor. Has the same type as "x".
*/
REG_OP(TransposeD)
.INPUT(x, TensorType({DT_INT8, DT_INT16, DT_INT32, DT_INT64, DT_UINT8,
DT_UINT16, DT_UINT32, DT_UINT64, DT_FLOAT16, DT_FLOAT}))
.OUTPUT(y, TensorType({DT_INT8, DT_INT16, DT_INT32, DT_INT64, DT_UINT8,
DT_UINT16, DT_UINT32, DT_UINT64, DT_FLOAT16, DT_FLOAT}))
.REQUIRED_ATTR(perm, ListInt)
5 years ago
.OP_END_FACTORY_REG(TransposeD)
/**
*@brief Permutes the dimensions according to perm.\n
The returned tensor's dimension i will correspond to the input dimension perm[i].
*@par Inputs:
*@li x: A Tensor. Must be one of the following types: float16, float32, int8, int16, int32, int64, uint8, uint16, uint32, uint64.
*@li perm: A Tensor of type int32 or int64. A permutation of the dimensions of "x".
*@par Outputs:
*y: A Tensor. Has the same type as "x".
*/
REG_OP(Transpose)
.INPUT(x, TensorType::BasicType())
.INPUT(perm, TensorType::IndexNumberType())
.OUTPUT(y, TensorType::BasicType())
.OP_END_FACTORY_REG(Transpose)
/**
*@brief Permutes the dimensions according to order.\n
The returned tensor's dimension i will correspond to the input dimension order[i].
*@par Inputs:
*x: A Tensor. Must be one of the following types: float16, float32.
*@par Attributes:
*order: A permutation of the dimensions of "x".support any axis transformation
*@par Outputs:
*y: A Tensor. Has the same type as "x".
*/
REG_OP(Permute)
.INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT}))
.OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT}))
.ATTR(order, ListInt, {0})
.OP_END_FACTORY_REG(Permute)
/**
*@brief Flattens the inputs. Reserves axis 0 and flattens the input tensors along axis 1.
*@par Inputs:
*One input: \n
*x: A multi-dimensional Tensor. Must be one of the following types: \n
int8, uint8, int16, uint16, int32, int64, float16, float32, float64.
*@par Outputs:
*y: A 2D flattened Tensor (Reserves axis 0 and flattens the input tensors along axis 1). Must be one of the following data types: int8, uint8, int16, uint16, int32, int64, float16, float32, float64.
*/
5 years ago
REG_OP(Flatten)
.INPUT(x, TensorType({DT_INT8, DT_INT16, DT_INT32, DT_INT64,
DT_UINT8, DT_UINT16, DT_UINT32, DT_UINT64,
DT_FLOAT, DT_FLOAT16}))
.OUTPUT(y, TensorType({DT_INT8, DT_INT16, DT_INT32, DT_INT64,
DT_UINT8, DT_UINT16, DT_UINT32, DT_UINT64,
DT_FLOAT, DT_FLOAT16}))
.OP_END_FACTORY_REG(Flatten)
/**
*@brief Permutes and crops the input tensor.
*@par Inputs:
* Three inputs, including: \n
*@li x: A 5D Tensor of type float16 or float32, with format NC1HWC0.
*@li block_shape: A 1D list or tuple of int32 or int64.
*@li crops: A 2D list or tuple of int32 or int64. Specifies the amount to crop from start and end dimensions after permutation.
*@par Outputs:
*y: A Tensor with format NC1HWC0. Has the same type as input "x".
*/
5 years ago
REG_OP(BatchToSpaceND)
.INPUT(x, TensorType::BasicType())
.INPUT(block_shape, TensorType::IndexNumberType())
.INPUT(crops, TensorType::IndexNumberType())
.OUTPUT(y, TensorType::BasicType())
.OP_END_FACTORY_REG(BatchToSpaceND)
/**
*@brief Permutes and crops the input tensor.
*@par Inputs:
* One input: \n
*x: A 5D Tensor of type float16 or float32, with format NC1HWC0.
*@par Attributes:
*@li block_shape: A required 1D list or tuple of int32 or int64.
*@li crops: A required 2D list or tuple of int32 or int64. Specifies the amount to crop from the start and end dimensions after permutation.
*@par Outputs:
*y: A Tensor with format NC1HWC0. Has the same type as input "x".
*/
5 years ago
REG_OP(BatchToSpaceNDD)
.INPUT(x, TensorType::BasicType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(block_shape, ListInt)
.REQUIRED_ATTR(crops, ListInt)
.OP_END_FACTORY_REG(BatchToSpaceNDD)
/**
*@brief Pads and permutes the input tensor.
*@par Inputs:
* Three inputs, including: \n
*@li x: A 5D Tensor of type float16 or float32, with format NC1HWC0.
*@li block_shape: A 1D list or tuple of int32 or int64.
*@li paddings: A 2D list or tuple of int32 or int64. Specifies the padding for the start and end dimensions after permutation.
*@par Outputs:
*y: A Tensor with format NC1HWC0. Has the same type as input "x".
*/
5 years ago
REG_OP(SpaceToBatchND)
.INPUT(x, TensorType::BasicType())
.INPUT(block_shape, TensorType::IndexNumberType())
.INPUT(paddings, TensorType::IndexNumberType())
.OUTPUT(y, TensorType::BasicType())
.OP_END_FACTORY_REG(SpaceToBatchND)
/**
*@brief Pads and permutes the input tensor.
*@par Inputs:
* One input: \n
*x: A 5D Tensor of type float16 or float32, with format NC1HWC0.
*@par Attributes:
*@li block_shape: A required 1D list or tuple of int32 or int64.
*@li paddings: A required 2D list or tuple of int32 or int64. Specifies the padding for the start and end dimensions after permutation.
*@par Outputs:
*y: A Tensor with format NC1HWC0. Has the same type as input "x".
*/
5 years ago
REG_OP(SpaceToBatchNDD)
.INPUT(x, TensorType::BasicType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(block_shape, ListInt)
.REQUIRED_ATTR(paddings, ListInt)
.OP_END_FACTORY_REG(SpaceToBatchNDD)
/**
*@brief Outputs a copy of the input tensor where values from the "height" and "width" dimensions are moved to the "depth" dimension.
*@par Inputs:
*x: An NHWC Tensor. Must be one of the following types:
* float16, float32, double, int64, int32, uint8, uint16, uint32, uint64, int8, int16, complex64, complex128, qint8, quint8, qint16, quint16, qint32.
*@par Attributes:
*@li block_size: A required int, specifying the input block size.
*@li data_format: An optional string from "NHWC" and "NCHW"
*@par Outputs:
*y: A Tensor. Has the same type as input "x".
*/
5 years ago
REG_OP(SpaceToDepth)
.INPUT(x, TensorType::BasicType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(block_size, Int)
.ATTR(data_format, String, "NHWC")
.OP_END_FACTORY_REG(SpaceToDepth)
/**
*@brief Rearranges data from depth into blocks of spatial data.
*@par Inputs:
*x: A Tensor. Must be one of the following types: float16, float32, double, int32, uint8,
* int16, int8, complex64, int64, qint8, quint8, qint32, qint16, quint16, uint16,
* complex128, uint32, uint64
*@par Attributes:
*Two attributes, including:
* @li block_size: An int >= 2, specifying the size of the spatial block.
* @li data_format: An optional string, specifying the data format. Defaults to "NHWC".
*@par Outputs:
*y: A Tensor of the same type as "x".
*/
5 years ago
REG_OP(DepthToSpace)
.INPUT(x, TensorType::BasicType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(block_size, Int)
.ATTR(data_format, String, "NHWC")
.OP_END_FACTORY_REG(DepthToSpace)
/**
*@brief Permutes data into spatial data blocks and then prunes them.
*@par Inputs:
*x: A 4D Tensor with format NC1HWC0. \n
*Must be one of the following types: float16, float32
*@par Attributes:
*@li crops: A required list of int8, int16, int32, or int64. No default value.
*@li block_size: A required int8, int16, int32, or int64. No default value.
*@par Outputs:
*y: A 4D Tensor with format NC1HWC0, \n
* of type float16 or float32.
*@attention Constraints:
*@li The size of the first dimension of input "x" must be divisible by (block_size * block_size).
*@li "crops" is a 2D tensor of non-negative integers with shape (2, 2).
*@li block_size >= 2
*/
REG_OP(BatchToSpace)
.INPUT(x, TensorType::BasicType())
.INPUT(crops, TensorType::IndexNumberType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(block_size, Int)
.OP_END_FACTORY_REG(BatchToSpace)
/**
*@brief Rearrange the batch (permutes) data into spatial data blocks, and then crop them.
*@par Inputs:
* One input:
*x: An Tensor of shape [batch*block_size*block_size, height_pad/block_size, width_pad/block_size, depth].\n
*The batch size of the input tensor must be divisible by (block size * block size).
*@par Attributes:
*@li block_size: Must be one of the following types: `int32`, `int64`.
*@li crops: An Tensor. Must be one of the following types: int32, Int64.\n
*2D tensor with non negative integer of shape [2, 2]. It specifies how many\n
*elements are clipped from the intermediate result of spatial dimension.
*@par Outputs:
*y: A Tensor. Has the same type and format as input "x".
*@attention Constraints:
*@li The size of the first dimension of input "x" must be divisible by (block_size * block_size).
*@li "crops" is a 2D tensor of non-negative integers with shape (2, 2).
*@li block_size >= 2
*/
REG_OP(BatchToSpaceD)
.INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE, DT_INT64, DT_INT32, DT_UINT8,
DT_UINT16, DT_UINT32, DT_UINT64, DT_INT8, DT_INT16, DT_COMPLEX64,
DT_COMPLEX128, DT_QINT8, DT_QUINT8, DT_QINT16, DT_QUINT16, DT_QINT32}))
.OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_DOUBLE, DT_INT64, DT_INT32, DT_UINT8,
DT_UINT16, DT_UINT32, DT_UINT64, DT_INT8, DT_INT16, DT_COMPLEX64,
DT_COMPLEX128, DT_QINT8, DT_QUINT8, DT_QINT16, DT_QUINT16, DT_QINT32}))
.REQUIRED_ATTR(block_size, Int)
.REQUIRED_ATTR(crops, ListInt)
.OP_END_FACTORY_REG(BatchToSpaceD)
/**
*@brief Outputs a copy of the input tensor where values from the "height" and "width" dimensions are padded and rearranged to the "batch" dimension.
*@par Inputs:
*@li x: An NC1HWC0 Tensor. Must be one of the following types:
* float16, float32, double, int64, int32, uint8, uint16, uint32, uint64, int8, int16, complex64, complex128, qint8, quint8, qint16, quint16, qint32.
*@li paddings: A 2D tensor of type int, specifying the input.
*@par Attributes:
*block_size: A required int, specifying the input block size.
*@par Outputs:
*y: A Tensor. Has the same type as input "x".
*/
5 years ago
REG_OP(SpaceToBatch)
.INPUT(x, TensorType::BasicType())
.INPUT(paddings, TensorType::IndexNumberType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(block_size, Int)
.OP_END_FACTORY_REG(SpaceToBatch)
/**
*@brief Outputs a copy of the input tensor where values from the "height" and "width" dimensions are padded and rearranged to the "batch" dimension.
*@par Inputs:
*x: An NC1HWC0 Tensor. Must be one of the following types: float16, float32, double, int64, int32, uint8, uint16, uint32, uint64, int8, int16, complex64, complex128, qint8, quint8, qint16, quint16, qint32.
*@par Attributes:
*@li block_size: A required int, specifying the input block size.
*@li paddings: A 2D tensor. All data types are supported.
*@par Outputs:
*y: A Tensor. Has the same type as input "x".
*/
5 years ago
REG_OP(SpaceToBatchD)
.INPUT(x, TensorType::BasicType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(block_size, Int)
.REQUIRED_ATTR(paddings, ListInt)
.OP_END_FACTORY_REG(SpaceToBatchD)
/**
* @brief Unpacks the given dimension of a rank-R tensor "x" into rank-(R-1)
5 years ago
* tensors.
* @par Inputs:
* @ x: A rank-R tensor (R > 0) of type BasicType, with format ND or NC1HWC0.
5 years ago
* @par Attributes:
* @li num: An optional int, specifying the number of tensors to be unpacked to.
* Defaults to "None".
* @li axis: A required int, specifying the axis to unpack along. The value range
* is [-R, R).
* @par Outputs:
* y: The list of Tensor objects unpacked from "x", of type BasicType.
5 years ago
* @attention Constraints:
* @li If "num" is not specified, it is inferred from the shape of "x".
5 years ago
* @li For the ND format, "axis" is in the range [-R, R); For the NC1HWC0 format,
* "axis" must not be 2, 3, -2, or -3.
*/
REG_OP(Unpack)
.INPUT(x, TensorType::BasicType())
.DYNAMIC_OUTPUT(y, TensorType::BasicType())
5 years ago
.REQUIRED_ATTR(num, Int)
.ATTR(axis, Int, 0)
.OP_END_FACTORY_REG(Unpack)
/**
* @brief Extract "patches" from "images" and stacks them in the "depth"
* dimension of the output.
* @par Inputs:
* x: A 4D Tensor with shape [batch, in_rows, in_cols, depth].
5 years ago
* @par Attributes:
* @li ksizes: A required list or tuple. The size of the sliding window for each
* dimension of images.
* @li strides: A required list or tuple. How far the centers of two consecutive
* patches are in the images. Must be: [1, stride_rows, stride_cols, 1].
* @li rates: A required list or tuple. Must be: [1, rate_rows, rate_cols, 1]. \n
* This is the input stride, specifying how far two consecutive patch \n
* samples are in the input. Equivalent to extracting patches
* with patch_sizes_eff = patch_sizes + (patch_sizes - 1) *\n
* (rates - 1), followed by subsampling them spatially by a factor of rates. \n
* This is equivalent to rate in dilated (a.k.a. Atrous) convolutions.
* @li padding: A required string. The type of padding algorithm to use.
5 years ago
* @par Outputs:
* Output: A 4D Tensor with shape [batch, out_rows, out_cols, ksize_rows *\n
* ksize_cols * depth] containing image patches with size ksize_rows x ksize_cols\n
* x depth vectorized in the "depth" dimension. Note "out_rows" and "out_cols"\n
* are the dimensions of the output patches.
* @attention Constraints:
* "ksizes", "strides" and "rates" are lists of integers.
*/
REG_OP(ExtractImagePatches)
.INPUT(x, TensorType::RealNumberType())
.OUTPUT(y, TensorType::RealNumberType())
.REQUIRED_ATTR(ksizes, ListInt)
.REQUIRED_ATTR(strides, ListInt)
.REQUIRED_ATTR(rates, ListInt)
.REQUIRED_ATTR(padding, String)
.OP_END_FACTORY_REG(ExtractImagePatches)
/**
* @brief Extract "patches" from "input" and put them in the "depth"
* dimension of the output.
* @par Inputs:
* x: A 5D Tensor with shape [batch, in_planes, in_rows, in_cols, depth].
* @par Attributes:
* @li ksizes: A required list or tuple. The size of the sliding window for each
* dimension of "x".
* @li strides: A required list or tuple. How far the centers of two consecutive
* patches are in "x". Must be: [1, stride_planes, stride_rows, stride_cols, 1].
* @li padding: A required string. The type of padding algorithm to use.
* @par Outputs:
* Output: A 5D Tensor with shape [batch, out_planes, out_rows, out_cols, ksize_planes * \n
* ksize_rows * ksize_cols * depth] containing patches with size (ksize_rows * ksize_cols\n
* * depth) vectorized in the "depth" dimension. Note "out_planes", "out_rows" and "out_cols"\n
* are the dimensions of the output patches.
* @attention Constraints:
* "ksizes" and "strides" are lists of integers.
*/
REG_OP(ExtractVolumePatches)
.INPUT(x, TensorType::REALNUMBERTYPE())
.OUTPUT(y, TensorType::REALNUMBERTYPE())
.REQUIRED_ATTR(ksizes, ListInt)
.REQUIRED_ATTR(strides, ListInt)
.REQUIRED_ATTR(padding, String)
.OP_END_FACTORY_REG(ExtractVolumePatches)
/**
*@brief Confuse reshape and transpose.
*@par Inputs:
*x: A Tensor. Must be one of the following types: float16, float32, int8, int16, int32, int64, uint8, uint16, uint32, uint64.
*@par Attributes:
*@li perm: A permutation of the dimensions of "x".
*@li shape: The shape of the input.
*@li transpose_first: If True, the transpose is first, otherwise the reshape is first.
*@par Outputs:
*y: A Tensor. Has the same type as "x".
*/
5 years ago
REG_OP(ConfusionTransposeD)
.INPUT(x, TensorType({DT_INT8, DT_INT16, DT_INT32, DT_INT64, DT_UINT8,
DT_UINT16, DT_UINT32, DT_UINT64, DT_FLOAT16, DT_FLOAT}))
.OUTPUT(y, TensorType({DT_INT8, DT_INT16, DT_INT32, DT_INT64, DT_UINT8,
DT_UINT16, DT_UINT32, DT_UINT64, DT_FLOAT16, DT_FLOAT}))
5 years ago
.REQUIRED_ATTR(perm, ListInt)
.REQUIRED_ATTR(shape, ListInt)
.REQUIRED_ATTR(transpose_first, Bool)
.OP_END_FACTORY_REG(ConfusionTransposeD)
/**
*@brief Confuse reshape and transpose.
*@par Inputs:
*@li x: A Tensor. Must be one of the following types: float16, float32, int8, int16, int32, int64, uint8, uint16, uint32, uint64.
*@li shape: The shape of the input.
*@par Attributes:
*@li perm: A permutation of the dimensions of "x".
*@li transpose_first: If True, the transpose is first, otherwise the reshape is first.
*@par Outputs:
*y: A Tensor. Has the same type as "x".
*/
5 years ago
REG_OP(ConfusionTranspose)
.INPUT(x, TensorType::BasicType())
.INPUT(shape, TensorType::IndexNumberType())
.OUTPUT(y, TensorType::BasicType())
.REQUIRED_ATTR(perm, ListInt)
.REQUIRED_ATTR(transpose_first, Bool)
.OP_END_FACTORY_REG(ConfusionTranspose)
/**
*@brief Flattens the input tensor to one-dimensional.
*@par Inputs:
*x: An ND tensor. All data types are supported.
*@par Attributes:
*@li axis: An optional int32, specifying the first axis to flatten. All preceding axes are retained in the output. Defaults to "1".
*@li end_axis: An optional int32, specifying the last axis to flatten. All following axes are retained in the output. Defaults to "-1".
*@par Outputs:
*y: The flattened ND tensor. All data types are supported.
*@attention Constraints:
* "axis" and "end_axis" must be within the dimension range of the input. This operator cannot be directly called by the acllopExecute API.
*/
REG_OP(FlattenV2)
.INPUT(x, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT8, DT_UINT8, DT_INT16, DT_UINT16,
DT_INT32, DT_UINT32, DT_INT64, DT_UINT64}))
.OUTPUT(y, TensorType({DT_FLOAT16, DT_FLOAT, DT_INT8, DT_UINT8, DT_INT16, DT_UINT16,
DT_INT32, DT_UINT32, DT_INT64, DT_UINT64}))
.ATTR(axis, Int, 1)
.ATTR(end_axis, Int, -1)
.OP_END_FACTORY_REG(FlattenV2)
REG_OP(DeConvTrans)
.INPUT(x, TensorType({DT_INT8}))
.OUTPUT(y, TensorType({DT_INT8}))
.OP_END_FACTORY_REG(DeConvTrans)
REG_OP(Compress)
.INPUT(weight, TensorType({DT_INT8, DT_FLOAT16}))
.OUTPUT(weight_compress, TensorType({DT_INT8, DT_FLOAT16}))
.OUTPUT(compress_index, TensorType({DT_INT8}))
.REQUIRED_ATTR(compress_parameters, ListInt)
.OP_END_FACTORY_REG(Compress)
5 years ago
} // namespace ge
#endif // GE_OP_TRANSFORMATION_OPS_H