File size: 282 Bytes
27813b0 | 1 2 3 4 5 6 7 8 9 | #pragma once
#include <torch/torch.h>
void rp_resample(torch::Tensor& out, torch::Tensor const& x,
torch::Tensor const& taps, torch::Tensor const& start,
torch::Tensor const& len, torch::Tensor const& off,
int64_t L, int64_t M);
|