Files
2026-07-13 12:40:42 +08:00

130 lines
4.7 KiB
C++

// Copyright (c) 2022 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/kernels/adagrad_kernel.h"
#include "paddle/phi/kernels/funcs/eigen/common.h"
#include "paddle/phi/kernels/funcs/math_function.h"
namespace phi {
template <typename Context, typename T>
struct SparseAdagradFunctor {
void operator()(const Context& dev_ctx,
const SelectedRows& grad,
const DenseTensor& learning_rate,
T epsilon,
DenseTensor* moment,
DenseTensor* param);
};
template <typename Context, typename T>
struct DenseAdagradFunctor {
void operator()(const Context& dev_ctx,
const DenseTensor& param_t,
const DenseTensor& grad_t,
const DenseTensor& moment_t,
const DenseTensor& learning_rate,
const optional<DenseTensor>& master_param,
float epsilon_t,
bool multi_precision,
DenseTensor* param_out_tensor,
DenseTensor* moment_out_tensor,
DenseTensor* master_param_outs);
};
template <typename Context, typename T>
SelectedRows SquareSelectedRows(const Context& dev_ctx,
const SelectedRows& input) {
SelectedRows out;
out.set_rows(input.rows());
out.set_height(input.height());
out.mutable_value()->Resize(input.value().dims());
dev_ctx.template Alloc<T>(out.mutable_value());
auto e_out = EigenVector<T>::Flatten(*(out.mutable_value()));
auto e_in = EigenVector<T>::Flatten(input.value());
e_out.device(*dev_ctx.eigen_device()) = e_in.square();
return out;
}
template <typename T, typename Context>
void AdagradDenseKernel(const Context& dev_ctx,
const DenseTensor& param_t,
const DenseTensor& grad_t,
const DenseTensor& moment_t,
const DenseTensor& learning_rate,
const optional<DenseTensor>& master_param,
float epsilon_t,
bool multi_precision,
DenseTensor* param_out_tensor,
DenseTensor* moment_out_tensor,
DenseTensor* master_param_outs) {
DenseAdagradFunctor<Context, T> functor;
functor(dev_ctx,
param_t,
grad_t,
moment_t,
learning_rate,
master_param,
epsilon_t,
multi_precision,
param_out_tensor,
moment_out_tensor,
master_param_outs);
}
template <typename T, typename Context>
void AdagradSparseKernel(const Context& dev_ctx,
const DenseTensor& param_t,
const SelectedRows& grad_t,
const DenseTensor& moment_t,
const DenseTensor& learning_rate,
const optional<DenseTensor>& master_param UNUSED,
float epsilon_t,
bool multi_precision UNUSED,
DenseTensor* param_out,
DenseTensor* moment_out,
DenseTensor* master_param_outs UNUSED) {
auto* param_out_tensor = param_out;
auto* moment_out_tensor = moment_out;
dev_ctx.template Alloc<T>(param_out_tensor);
dev_ctx.template Alloc<T>(moment_out_tensor);
T epsilon = static_cast<T>(epsilon_t);
auto* param_tensor = &param_t;
PADDLE_ENFORCE_EQ(param_tensor->IsSharedBufferWith(*param_out_tensor),
true,
common::errors::InvalidArgument(
"the input tensor not equal with output tensor"));
auto* moment_tensor = &moment_t;
PADDLE_ENFORCE_EQ(moment_tensor->IsSharedBufferWith(*moment_out_tensor),
true,
common::errors::InvalidArgument(
"the input moment not equal with output moment"));
SparseAdagradFunctor<Context, T> functor;
functor(dev_ctx,
grad_t,
learning_rate,
epsilon,
moment_out_tensor,
param_out_tensor);
}
} // namespace phi