You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
770 B
27 lines
770 B
#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|
|
#include <ATen/core/Tensor.h>
|
|
#include <ATen/native/DispatchStub.h>
|
|
|
|
namespace at::native {
|
|
|
|
using fused_sgd_fn = void (*)(
|
|
const at::Tensor& param,
|
|
const at::Tensor& grad,
|
|
const at::Tensor& momentum_buffer,
|
|
const double weight_decay,
|
|
const double momentum,
|
|
const double lr,
|
|
const double dampening,
|
|
const bool nesterov,
|
|
const bool maximize,
|
|
const bool is_first_step,
|
|
const float* grad_scale_ptr);
|
|
|
|
DECLARE_DISPATCH(fused_sgd_fn, fused_sgd_stub)
|
|
|
|
} // namespace at::native
|
|
|
|
#else
|
|
#error "This file should not be included when either TORCH_STABLE_ONLY or TORCH_TARGET_VERSION is defined."
|
|
#endif // !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|