Function torch::nn::functional::fold#
Defined in File fold.h
Function Documentation#
-
inline Tensor torch::nn::functional::fold(const Tensor &input, const FoldFuncOptions &options)#
See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.fold about the exact behavior of this functional.
See the documentation for
torch::nn::functional::FoldFuncOptions
class to learn what optional arguments are supported for this functional.Example:
namespace F = torch::nn::functional; F::fold(input, F::FoldFuncOptions({3, 2}, {2, 2}));