1234567891011121314151617181920 |
- #pragma once
- #include <ATen/native/DispatchStub.h>
- #include <cstdint>
- namespace at {
- class TensorBase;
- }
- namespace at { namespace native {
- using weight_norm_fn = void(*)(
- TensorBase&, TensorBase&, const TensorBase&, const TensorBase&, int64_t);
- using weight_norm_backward_fn = void(*)(
- TensorBase&, TensorBase&, const TensorBase&, const TensorBase&,
- const TensorBase&, const TensorBase&, int64_t);
- DECLARE_DISPATCH(weight_norm_fn, weight_norm_stub);
- DECLARE_DISPATCH(weight_norm_backward_fn, weight_norm_backward_stub);
- }} // namespace at::native
|