utility.h 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
//
// 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.

#pragma once

17
#include <functional>
18 19 20 21
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
22 23 24 25 26 27
#include "graph/buffer.h"
#include "graph/graph.h"
#include "graph/model.h"
#include "graph/op/all_ops.h"
#include "graph/operator.h"
#include "graph/operator_reg.h"
28
#include "lite/core/op_lite.h"
29
#include "lite/utils/macros.h"
30

31
// Extended ops based on HIAI DDK
32
namespace ge {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
/**
 * Pads a tensor.
 * <Input>
 *      x : the input tensor
 *      padding : the input tensor must be 2-D
 *      constant_values : constant values must be a scalar
 * <Output>
 *      output : the output tensor
 * <Attr>
 *      t_paddings : Default DT_INT32 , t_paddings must be  the same with
 * datatype of the padding
 *      mode : 0: CONSTANT, 1: REFLECT, 2: SYMMETRIC
 *      T  :  datatype of constant_values  DT_INT32:3   DT_FLOAT:0
 */
REG_OP(Pad)
48 49 50 51 52 53 54
    .INPUT(x, TensorType({DT_FLOAT, DT_INT32}))
    .INPUT(padding, TensorType({DT_INT32}))
    .OPTIONAL_INPUT(constant_values, TensorType({DT_INT32, DT_FLOAT}))
    .OUTPUT(output, TensorType({DT_FLOAT, DT_INT32}))
    .ATTR(t_paddings, AttrValue::INT{3})
    .ATTR(mode, AttrValue::INT{0})
    .REQUIRED_ATTR(T, AttrValue::INT)
55
    .OP_END();
56 57 58 59 60

}  // namespace ge

namespace paddle {
namespace lite {
61
namespace subgraph {
62 63
namespace npu {

64 65 66 67
// Type/tensor converters for converting Paddle type/tensor to HiAI type/tensor
bool HasInputArg(const OpInfo* op_info,
                 const Scope* scope,
                 const std::string& argname);
68

69
ge::DataType CvtPrecisionType(PrecisionType itype);
70

71
ge::Format CvtDataLayoutType(DataLayoutType itype);
72

73 74 75 76 77
// Padding the shape to 4-dimensions(NCHW) for HiAI
std::vector<int64_t> CvtShape(const std::vector<int64_t>& in_shape);

std::vector<int64_t> CvtShape(const DDim& in_dims);

78
ge::TensorPtr CvtTensor(const Tensor& in_tensor,
79
                        std::vector<int64_t> out_shape = {},
80
                        DataLayoutType in_layout = DATALAYOUT(kNCHW));
81

82 83
int CvtActMode(std::string act_type);

84
}  // namespace npu
85
}  // namespace subgraph
86 87
}  // namespace lite
}  // namespace paddle