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.
34 lines
871 B
34 lines
871 B
#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|
|
#pragma once
|
|
|
|
#include <ATen/native/DispatchStub.h>
|
|
#include <ATen/core/ATen_fwd.h>
|
|
|
|
namespace at {
|
|
class Tensor;
|
|
|
|
namespace native {
|
|
|
|
using _amp_foreach_non_finite_check_and_unscale_cpu__fn = void (*)(
|
|
TensorList,
|
|
Tensor&,
|
|
const Tensor&);
|
|
|
|
using _amp_update_scale_cpu__fn = Tensor& (*)(
|
|
Tensor&,
|
|
Tensor&,
|
|
const Tensor&,
|
|
double,
|
|
double,
|
|
int64_t);
|
|
|
|
DECLARE_DISPATCH(_amp_foreach_non_finite_check_and_unscale_cpu__fn, _amp_foreach_non_finite_check_and_unscale_cpu_stub)
|
|
DECLARE_DISPATCH(_amp_update_scale_cpu__fn, _amp_update_scale_cpu_stub)
|
|
|
|
} // namespace native
|
|
} // namespace at
|
|
|
|
#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)
|