File size: 308 Bytes
9dd3461 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#pragma once
#include <ATen/native/DispatchStub.h>
namespace at {
class Tensor;
namespace native {
using max_unpooling_fn = void(*)(Tensor&, const Tensor&, const Tensor&);
DECLARE_DISPATCH(max_unpooling_fn, max_unpool2d_kernel);
DECLARE_DISPATCH(max_unpooling_fn, max_unpool3d_kernel);
}} // at::native
|