shuffle_batch_op.cc 6.1 KB
Newer Older
Z
zhoushiyu 已提交
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 16 17
#include <atomic>
#include <cstring>
#include <ctime>
Z
zhoushiyu 已提交
18
#include <memory>
19 20 21 22 23 24 25 26
#include <random>
#include <string>
#include <utility>
#include <vector>

#include "glog/logging.h"
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/lod_tensor.h"
Z
zhoushiyu 已提交
27
#include "paddle/fluid/framework/no_need_buffer_vars_inference.h"
28
#include "paddle/fluid/framework/op_registry.h"
Z
zhoushiyu 已提交
29
#include "paddle/fluid/framework/var_type_inference.h"
30 31 32
#include "paddle/fluid/memory/memcpy.h"
#include "paddle/fluid/platform/timer.h"
#include "paddle/phi/core/mixed_vector.h"
Z
zhoushiyu 已提交
33 34 35 36 37 38 39 40 41

namespace paddle {
namespace operators {
class ShuffleBatchOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

  void InferShape(framework::InferShapeContext *ctx) const override {
    PADDLE_ENFORCE_EQ(
42 43
        ctx->HasInput("X"),
        true,
Z
zhoushiyu 已提交
44 45
        platform::errors::NotFound("Input(X) should not be null."));
    PADDLE_ENFORCE_EQ(
46 47
        ctx->HasInput("Seed"),
        true,
Z
zhoushiyu 已提交
48 49
        platform::errors::NotFound("Input(Seed) should not be null."));
    PADDLE_ENFORCE_EQ(
50 51
        ctx->HasOutput("Out"),
        true,
Z
zhoushiyu 已提交
52 53
        platform::errors::NotFound("Output(Out) should not be null."));
    PADDLE_ENFORCE_EQ(
54 55
        ctx->HasOutput("ShuffleIdx"),
        true,
Z
zhoushiyu 已提交
56 57
        platform::errors::NotFound("Output(ShuffleIdx) should not be null."));
    PADDLE_ENFORCE_EQ(
58 59
        ctx->HasOutput("SeedOut"),
        true,
Z
zhoushiyu 已提交
60 61 62 63 64 65
        platform::errors::NotFound("Output(SeedOut) should not be null."));

    ctx->ShareDim("X", "Out");
    ctx->ShareLoD("X", "Out");
    ctx->ShareDim("Seed", "SeedOut");
    ctx->ShareLoD("Seed", "SeedOut");
66
    ctx->SetOutputDim("ShuffleIdx", phi::make_ddim({-1}));
Z
zhoushiyu 已提交
67 68 69
  }

 protected:
70
  phi::KernelKey GetExpectedKernelType(
Z
zhoushiyu 已提交
71 72
      const framework::ExecutionContext &ctx) const override {
    auto data_type = OperatorWithKernel::IndicateVarDataType(ctx, "X");
73
    return phi::KernelKey(data_type, ctx.GetPlace());
Z
zhoushiyu 已提交
74
  }
75

76
  phi::KernelKey GetKernelTypeForVar(
77
      const std::string &var_name,
78
      const phi::DenseTensor &tensor,
79
      const phi::KernelKey &expected_kernel_type) const override {
80
    if (var_name == "Seed") {
81 82 83
      return phi::KernelKey(phi::Backend::ALL_BACKEND,
                            expected_kernel_type.layout(),
                            expected_kernel_type.dtype());
84 85 86 87
    }
    return framework::OperatorWithKernel::GetKernelTypeForVar(
        var_name, tensor, expected_kernel_type);
  }
Z
zhoushiyu 已提交
88 89 90 91 92
};

class ShuffleBatchOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  void Make() override {
93 94
    AddInput("X", "(phi::DenseTensor) The input tensor of shuffle_batch op.");
    AddInput("Seed", "(phi::DenseTensor) The input seed tensor.");
Z
zhoushiyu 已提交
95 96 97 98 99 100
    AddAttr<int>(
        "startup_seed",
        "If input tensor 'Seed' is not initialized, the 'startup_seed' "
        "will be used to replace it. The seed after shuffle batch will "
        "be saved in 'SeedOut'. ")
        .SetDefault(0);
101 102
    AddOutput("Out",
              "(phi::DenseTensor) The output tensor of shuffle_batch op.");
Z
zhoushiyu 已提交
103
    AddOutput("ShuffleIdx", "(Tensor) Record forword shuffle order");
104
    AddOutput("SeedOut", "(phi::DenseTensor) Saved new generated seed.");
Z
zhoushiyu 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
    AddComment(R"DOC(
Shuffle Batch Operator.

This operator is used to shuffle input $X$'s elements.

There is 2 input. The product of input dims (except last dim) numbers of elements will be shuffled. $Seed$ is tensor of seed.

There are 3 outputs. $Out$ is shuffled tensor of input. $ShuffleIdx$ is the tensor used to record shuffle order. $SeedOut$ is same tensor of $Seed$.
)DOC");
  }
};

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

  void InferShape(framework::InferShapeContext *ctx) const override {
    PADDLE_ENFORCE_EQ(
123 124
        ctx->HasInput("ShuffleIdx"),
        true,
Z
zhoushiyu 已提交
125 126
        platform::errors::NotFound("Input(ShuffleIdx) should not be null"));
    PADDLE_ENFORCE_EQ(
127 128
        ctx->HasInput(framework::GradVarName("Out")),
        true,
Z
zhoushiyu 已提交
129 130
        platform::errors::NotFound("Grad Input(Out) should not be null"));
    PADDLE_ENFORCE_EQ(
131 132
        ctx->HasOutput(framework::GradVarName("X")),
        true,
Z
zhoushiyu 已提交
133 134 135 136 137 138 139
        platform::errors::NotFound("Grad Output(X) should not be null"));

    ctx->ShareDim(framework::GradVarName("Out"), framework::GradVarName("X"));
    ctx->ShareLoD(framework::GradVarName("Out"), framework::GradVarName("X"));
  }

 protected:
140
  phi::KernelKey GetExpectedKernelType(
Z
zhoushiyu 已提交
141 142 143
      const framework::ExecutionContext &ctx) const override {
    auto data_type = OperatorWithKernel::IndicateVarDataType(
        ctx, framework::GradVarName("Out"));
144
    return phi::KernelKey(data_type, ctx.GetPlace());
Z
zhoushiyu 已提交
145 146 147 148 149 150 151 152 153
  }
};

template <typename T>
class ShuffleBatchGradOpMaker : public framework::SingleGradOpMaker<T> {
 public:
  using framework::SingleGradOpMaker<T>::SingleGradOpMaker;

 protected:
154
  void Apply(GradOpPtr<T> op) const override {
Z
zhoushiyu 已提交
155 156 157 158 159 160 161 162 163 164 165 166
    op->SetType("shuffle_batch_grad");
    op->SetInput("ShuffleIdx", this->Output("ShuffleIdx"));
    op->SetAttrMap(this->Attrs());
    op->SetInput(framework::GradVarName("Out"), this->OutputGrad("Out"));
    op->SetOutput(framework::GradVarName("X"), this->InputGrad("X"));
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
167 168 169
REGISTER_OPERATOR(shuffle_batch,
                  ops::ShuffleBatchOp,
                  ops::ShuffleBatchOpMaker,
Z
zhoushiyu 已提交
170 171 172
                  ops::ShuffleBatchGradOpMaker<paddle::framework::OpDesc>,
                  ops::ShuffleBatchGradOpMaker<paddle::imperative::OpBase>);
REGISTER_OPERATOR(shuffle_batch_grad, ops::ShuffleBatchOpGrad);