batch_size_like.h 2.6 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

19 20
#include "paddle/fluid/framework/convert_utils.h"
#include "paddle/fluid/framework/infershape_utils.h"
21
#include "paddle/fluid/framework/op_registry.h"
22
#include "paddle/phi/infermeta/unary.h"
23
#include "paddle/phi/kernels/funcs/math_function.h"
24 25 26 27

namespace paddle {
namespace operators {

28 29
using MetaTensor = framework::CompatMetaTensor;

30 31 32 33
class BatchSizeLikeOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

34
  void InferShape(framework::InferShapeContext* ctx) const override {
35 36
    OP_INOUT_CHECK(ctx->HasInput("Input"), "Input", "Input", Type());
    OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", Type());
37

38 39 40 41 42 43 44
    MetaTensor x(ctx->GetInputVarPtrs("Input")[0], ctx->IsRuntime());
    MetaTensor out(ctx->GetOutputVarPtrs("Out")[0], ctx->IsRuntime());
    auto& shape = ctx->Attrs().Get<std::vector<int>>("shape");
    int x_batch_size_dim = ctx->Attrs().Get<int>("input_dim_idx");
    int out_batch_size_dim = ctx->Attrs().Get<int>("output_dim_idx");
    phi::BatchSizeLikeInferMeta(x, shape, x_batch_size_dim, out_batch_size_dim,
                                &out);
45
  }
46 47 48 49
};

class BatchSizeLikeOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
yuyang18 已提交
50
  void Make() final {
Y
yuyang18 已提交
51 52 53
    AddInput(
        "Input",
        "Tensor whose input_dim_idx'th dimension specifies the batch_size");
54
    AddOutput("Out",
Y
yuyang18 已提交
55
              "Tensor of specified shape will be filled "
56
              "with the specified value");
Y
yuyang18 已提交
57
    AddAttr<std::vector<int>>("shape", "The shape of the output");
58
    AddAttr<int>("input_dim_idx",
Y
yuyang18 已提交
59
                 "default 0. The index of input's batch size dimension")
60 61
        .SetDefault(0);
    AddAttr<int>("output_dim_idx",
Y
yuyang18 已提交
62
                 "default 0. The index of output's batch size dimension")
63
        .SetDefault(0);
Y
yuyang18 已提交
64
    Apply();
65
  }
Y
yuyang18 已提交
66 67 68

 protected:
  virtual void Apply() = 0;
69 70
};

71
DECLARE_NO_NEED_BUFFER_VARS_INFERER(BatchSizeLikeNoNeedBufferVarsInferer,
72
                                    "Input");
73

74 75
}  // namespace operators
}  // namespace paddle