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.
56 lines
1.5 KiB
56 lines
1.5 KiB
#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|
|
#pragma once
|
|
|
|
#include <ATen/native/DispatchStub.h>
|
|
#include <ATen/native/ReductionType.h>
|
|
#include <c10/core/Scalar.h>
|
|
#include <optional>
|
|
|
|
namespace at {
|
|
class Tensor;
|
|
|
|
namespace native {
|
|
|
|
using segment_reduce_lengths_fn = Tensor (*)(
|
|
ReductionType,
|
|
const Tensor&,
|
|
const Tensor&,
|
|
int64_t,
|
|
const std::optional<Scalar>&);
|
|
DECLARE_DISPATCH(segment_reduce_lengths_fn, _segment_reduce_lengths_stub)
|
|
|
|
using segment_reduce_offsets_fn = Tensor (*)(
|
|
ReductionType,
|
|
const Tensor&,
|
|
const Tensor&,
|
|
int64_t,
|
|
const std::optional<Scalar>&);
|
|
DECLARE_DISPATCH(segment_reduce_offsets_fn, _segment_reduce_offsets_stub)
|
|
|
|
using segment_reduce_lengths_backward_fn = Tensor (*)(
|
|
const Tensor&,
|
|
const Tensor&,
|
|
const Tensor&,
|
|
ReductionType,
|
|
const Tensor&,
|
|
int64_t,
|
|
const std::optional<Scalar>&);
|
|
DECLARE_DISPATCH(segment_reduce_lengths_backward_fn, _segment_reduce_lengths_backward_stub)
|
|
|
|
using segment_reduce_offsets_backward_fn = Tensor (*)(
|
|
const Tensor&,
|
|
const Tensor&,
|
|
const Tensor&,
|
|
ReductionType,
|
|
const Tensor&,
|
|
int64_t,
|
|
const std::optional<Scalar>&);
|
|
DECLARE_DISPATCH(segment_reduce_offsets_backward_fn, _segment_reduce_offsets_backward_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)
|