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/swap_co_ops.h

63 lines
1.9 KiB

/**
* 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.
*/
/*!
* \file swap_co_ops.h
* \brief
*/
#ifndef OPS_BUILT_IN_OP_PROTO_INC_SWAP_CO_OPS_H_
#define OPS_BUILT_IN_OP_PROTO_INC_SWAP_CO_OPS_H_
#include "graph/operator_reg.h"
namespace ge {
/**
*@brief Folds the convolution input weight constant of the preceding layer
* of PSROIPooling to convert the N dimension of the weight from
* (output_dim, group_size*group_size) to
* (group_size*group_size, int((output_dim+15)/C0)*C0).
*@see PSROIPooling
*@par Inputs:
* One input:
*x: An NCHW tensor of type float16 or float32, describing the weight of
* convolution. Dim N must equal output_dim*group_size*group_size . \n
*@par Attributes:
*@li output_dim: A required int32, specifying the number of output channels.
* Must be greater than "0".
*@li group_size: A required int32, specifying the number of groups to encode
* position-sensitive score maps. Must be within the range (0, 128) . \n
*@par Outputs:
*y: An NCHW tensor of type float16 or float32, describing the result weight
* of convolution.
*@par Restrictions:
*Warning: THIS FUNCTION IS EXPERIMENTAL. Please do not use.
*/
REG_OP(SwapCo)
.INPUT(x, TensorType({DT_FLOAT, DT_FLOAT16}))
.ATTR(output_dim, Int, 0)
.ATTR(group_size, Int, 0)
.OUTPUT(y, TensorType({DT_FLOAT, DT_FLOAT16}))
.OP_END_FACTORY_REG(SwapCo)
} // namespace ge
#endif // OPS_BUILT_IN_OP_PROTO_INC_SWAP_CO_OPS_H_