batch_size_like.h 4.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.

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
S
Siddharth Goyal 已提交
16 17
#include <algorithm>
#include <vector>
18
#include "paddle/fluid/framework/op_registry.h"
19
#include "paddle/phi/kernels/funcs/math_function.h"
20 21 22 23 24 25 26 27

namespace paddle {
namespace operators {

class BatchSizeLikeOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

28
  void InferShape(framework::InferShapeContext *ctx) const override {
29 30
    OP_INOUT_CHECK(ctx->HasInput("Input"), "Input", "Input", Type());
    OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", Type());
31 32

    auto &shape = ctx->Attrs().Get<std::vector<int>>("shape");
33 34 35 36
    PADDLE_ENFORCE_GT(shape.size(), 0,
                      platform::errors::InvalidArgument(
                          "Shape size must be larger than 0, but received: %s.",
                          shape.size()));
37 38 39
    std::vector<int64_t> shape_int64(shape.size(), 0);
    std::transform(shape.begin(), shape.end(), shape_int64.begin(),
                   [](int a) { return static_cast<int64_t>(a); });
40
    auto output_dim = phi::make_ddim(shape_int64);
41 42

    int input_dim_idx = ctx->Attrs().Get<int>("input_dim_idx");
43 44 45 46 47 48 49 50 51 52 53 54
    int input_dim_size = static_cast<int>(ctx->GetInputDim("Input").size());
    PADDLE_ENFORCE_GE(input_dim_idx, 0,
                      platform::errors::InvalidArgument(
                          "Input dimension index must be larger "
                          "equal than 0, but received: %s.",
                          input_dim_idx));
    PADDLE_ENFORCE_GT(input_dim_size, input_dim_idx,
                      platform::errors::InvalidArgument(
                          "Input dimension size must be larger than "
                          "input dimension index, but received input "
                          "dimension size: %s, input dimension index: %s.",
                          input_dim_size, input_dim_idx));
55 56

    int output_dim_idx = ctx->Attrs().Get<int>("output_dim_idx");
57 58 59 60 61 62 63 64 65 66 67 68 69
    int output_dim_size = static_cast<int>(shape.size());
    PADDLE_ENFORCE_GE(output_dim_idx, 0,
                      platform::errors::InvalidArgument(
                          "Output dimension index must be larger "
                          "equal than 0, but received: %s.",
                          output_dim_idx));
    PADDLE_ENFORCE_GT(
        output_dim_size, output_dim_idx,
        platform::errors::InvalidArgument(
            "Output dimension size must be larger than output dimension index, "
            "but received output dimension size: %s, output dimension index: "
            "%s.",
            output_dim_size, output_dim_idx));
70 71 72 73

    output_dim[output_dim_idx] = ctx->GetInputDim("Input")[input_dim_idx];
    ctx->SetOutputDim("Out", output_dim);
  }
74 75 76 77
};

class BatchSizeLikeOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
yuyang18 已提交
78
  void Make() final {
Y
yuyang18 已提交
79 80 81
    AddInput(
        "Input",
        "Tensor whose input_dim_idx'th dimension specifies the batch_size");
82
    AddOutput("Out",
Y
yuyang18 已提交
83
              "Tensor of specified shape will be filled "
84
              "with the specified value");
Y
yuyang18 已提交
85
    AddAttr<std::vector<int>>("shape", "The shape of the output");
86
    AddAttr<int>("input_dim_idx",
Y
yuyang18 已提交
87
                 "default 0. The index of input's batch size dimension")
88 89
        .SetDefault(0);
    AddAttr<int>("output_dim_idx",
Y
yuyang18 已提交
90
                 "default 0. The index of output's batch size dimension")
91
        .SetDefault(0);
Y
yuyang18 已提交
92
    Apply();
93
  }
Y
yuyang18 已提交
94 95 96

 protected:
  virtual void Apply() = 0;
97 98
};

99
DECLARE_NO_NEED_BUFFER_VARS_INFERER(BatchSizeLikeNoNeedBufferVarsInferer,
100
                                    "Input");
101

102 103
}  // namespace operators
}  // namespace paddle