| 12345678910111213141516171819202122232425 |
- #if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
- #include <ATen/core/Tensor.h>
- #include <ATen/native/DispatchStub.h>
- namespace at::native {
- using fused_adagrad_fn = void (*)(
- const at::Tensor& param,
- const at::Tensor& grad,
- const at::Tensor& state_sum,
- const at::Tensor& state_step,
- const double lr,
- const double lr_decay,
- const double weight_decay,
- const double eps,
- const bool maximize,
- const float* grad_scale_ptr);
- DECLARE_DISPATCH(fused_adagrad_fn, fused_adagrad_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)
|