// Copyright (c) 2018 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. #pragma once #include "paddle/fluid/framework/op_registry.h" namespace paddle { namespace operators { using LoDTensor = framework::LoDTensor; template class SequenceEnumerateKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& context) const override { auto* in = context.Input("X"); auto* out = context.Output("Out"); int win_size = context.Attr("win_size"); int pad_value = context.Attr("pad_value"); auto in_dims = in->dims(); auto in_lod = in->lod(); PADDLE_ENFORCE_EQ( static_cast(in_dims[0]), in_lod[0].back(), "The actual input data's size mismatched with LoD information."); // Generate enumerate sequence set auto lod0 = in_lod[0]; auto in_data = in->data(); auto out_data = out->mutable_data(context.GetPlace()); for (size_t i = 0; i < lod0.size() - 1; ++i) { for (size_t idx = lod0[i]; idx < lod0[i + 1]; ++idx) { for (int word_idx = 0; word_idx < win_size; ++word_idx) { size_t word_pos = idx + word_idx; out_data[win_size * idx + word_idx] = word_pos < lod0[i + 1] ? in_data[word_pos] : pad_value; } } } } }; } // namespace operators } // namespace paddle