range_op.cc 4.0 KB
Newer Older
W
whs 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2016 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. */

#include "paddle/fluid/operators/range_op.h"
16
#include <string>
W
whs 已提交
17 18 19 20 21 22 23 24 25 26 27

namespace paddle {
namespace operators {

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

  void InferShape(framework::InferShapeContext *ctx) const override {
    if (ctx->HasInput("Start")) {
      auto s_dims = ctx->GetInputDim("Start");
28 29 30 31 32 33 34 35 36 37 38
      PADDLE_ENFORCE_EQ(
          s_dims.size(), 1,
          platform::errors::InvalidArgument(
              "The dim of the shape of Input(Start) should be 1, but got %d",
              s_dims.size()));

      PADDLE_ENFORCE_EQ(s_dims[0], 1,
                        platform::errors::InvalidArgument(
                            "The first dim of the shape of Input(Start) should "
                            "be 1, but got %d",
                            s_dims[0]));
W
whs 已提交
39 40 41
    }
    if (ctx->HasInput("End")) {
      auto e_dims = ctx->GetInputDim("End");
42 43 44 45 46 47 48 49 50 51
      PADDLE_ENFORCE_EQ(
          e_dims.size(), 1,
          platform::errors::InvalidArgument(
              "The dim of the shape of Input(End) should be 1, but got %d",
              e_dims.size()));

      PADDLE_ENFORCE_EQ(e_dims[0], 1, platform::errors::InvalidArgument(
                                          "The first dim of the shape of "
                                          "Input(End) should be 1, but got %d",
                                          e_dims[0]));
W
whs 已提交
52 53 54
    }
    if (ctx->HasInput("Step")) {
      auto step_dims = ctx->GetInputDim("Step");
55 56 57 58 59 60 61 62 63 64 65
      PADDLE_ENFORCE_EQ(
          step_dims.size(), 1,
          platform::errors::InvalidArgument(
              "The dim of the shape of Input(Step) should be 1, but got %d",
              step_dims.size()));

      PADDLE_ENFORCE_EQ(step_dims[0], 1,
                        platform::errors::InvalidArgument(
                            "The first dim of the shape of Input(Step) should "
                            "be 1, but got %d",
                            step_dims[0]));
W
whs 已提交
66 67 68
    }
    ctx->SetOutputDim("Out", {-1});
  }
69 70 71 72 73 74 75

 protected:
  framework::OpKernelType GetKernelTypeForVar(
      const std::string &var_name, const framework::Tensor &tensor,
      const framework::OpKernelType &expected_kernel_type) const override {
    return expected_kernel_type;
  }
W
whs 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
};

class RangeOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  void Make() override {
    AddInput("Start",
             "Start of interval. The interval includes this value. It is a "
             "tensor with shape=[1].");
    AddInput("End",
             "End of interval. The interval does not include this value, "
             "except in some cases where step is not an integer and floating "
             "point round-off affects the length of out. It is a tensor with "
             "shape=[1].");
    AddInput("Step", "Spacing between values. It is a tensor with shape=[1].");
    AddOutput("Out", "A sequence of numbers.");
    AddComment(R"DOC(
    Return evenly spaced values within a given interval. Values are generated within the half-open interval [start, stop) (in other words, the interval including start but excluding stop). Like arange function of numpy.
)DOC");
  }
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
REGISTER_OP_WITHOUT_GRADIENT(range, ops::RangeOp, ops::RangeOpMaker);
REGISTER_OP_CPU_KERNEL(range, ops::CPURangeKernel<int>,
                       ops::CPURangeKernel<float>, ops::CPURangeKernel<double>,
                       ops::CPURangeKernel<int64_t>);