where_index_op.cc 2.3 KB
Newer Older
Z
zhoukunsheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
#include "paddle/fluid/operators/where_index_op.h"
Z
zhoukunsheng 已提交
16 17 18 19

namespace paddle {
namespace operators {

20
class WhereIndexOp : public framework::OperatorWithKernel {
Z
zhoukunsheng 已提交
21 22 23 24
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

  void InferShape(framework::InferShapeContext* ctx) const override {
25 26 27 28 29 30 31 32 33 34 35 36
    PADDLE_ENFORCE_EQ(
        ctx->HasInput("Condition"), true,
        platform::errors::NotFound(
            "Input(Condition) of layers.where should not be null."));
    PADDLE_ENFORCE_GE(
        ctx->GetInputDim("Condition").size(), 1UL,
        platform::errors::InvalidArgument(
            "Input(Condition) should have number of dimension at least 1"));
    PADDLE_ENFORCE_EQ(ctx->HasOutput("Out"), true,
                      platform::errors::NotFound(
                          "Output(Out) of layers.where should not be null."));

Z
zhoukunsheng 已提交
37 38 39 40 41 42 43 44 45 46 47
    ctx->SetOutputDim("Out", {-1, ctx->GetInputDim("Condition").size()});
  }

 protected:
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext& ctx) const override {
    auto output_type = framework::proto::VarType::INT64;
    return framework::OpKernelType(output_type, ctx.device_context());
  }
};

48
class WhereIndexOpMaker : public framework::OpProtoAndCheckerMaker {
Z
zhoukunsheng 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61
 public:
  void Make() override {
    AddInput("Condition", "A bool tensor whose rank is at least 1");
    AddOutput("Out", "An int64 tensor of rank 2");
    AddComment(R"DOC(
      Return a int64 tensor with rank 2, specifying the coordinate of true element in `Condition`.
)DOC");
  }
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
62 63 64
REGISTER_OP_WITHOUT_GRADIENT(where_index, ops::WhereIndexOp,
                             ops::WhereIndexOpMaker);
REGISTER_OP_CPU_KERNEL(where_index, ops::CPUWhereIndexKernel<int64_t>);