/* Copyright (c) 2023 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/phi/core/dense_tensor.h" #include "paddle/phi/kernels/funcs/for_range.h" namespace phi { namespace funcs { template struct SequenceMaskForRangeFunctor { HOSTDEVICE SequenceMaskForRangeFunctor(const Tx *x, Ty *y, int maxlen) : x_(x), y_(y), maxlen_(maxlen) {} HOSTDEVICE void operator()(int64_t y_idx) const { int64_t x_idx = y_idx / maxlen_; int64_t j = y_idx % maxlen_; y_[y_idx] = static_cast(j < x_[x_idx] ? 1 : 0); } private: const Tx *x_; Ty *y_; int maxlen_; }; template struct SequenceMaskFunctor { SequenceMaskFunctor(const DeviceContext &dev_ctx, const Tx *x, DenseTensor *y, int64_t limits, int maxlen) : dev_ctx_(dev_ctx), x_(x), y_(y), limits_(limits), maxlen_(maxlen) {} template void apply() const { dev_ctx_.template Alloc(y_); auto *y_data = y_->data(); funcs::ForRange for_range(dev_ctx_, limits_); for_range(SequenceMaskForRangeFunctor(x_, y_data, maxlen_)); } private: const DeviceContext &dev_ctx_; const Tx *x_; DenseTensor *y_; int64_t limits_; int maxlen_; }; } // namespace funcs } // namespace phi