Sha256: c905c1af21b802e2a8204e27680584737c7214294986647e1b334dc716fff4e8

Contents?: true

Size: 292 Bytes

Versions: 16

Compression:

Stored size: 292 Bytes

Contents

#include <torch/torch.h>

#include <rice/rice.hpp>

#include "fft_functions.h"
#include "templates.h"
#include "utils.h"

void init_fft(Rice::Module& m) {
  auto rb_mFFT = Rice::define_module_under(m, "FFT");
  rb_mFFT.add_handler<torch::Error>(handle_error);
  add_fft_functions(rb_mFFT);
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
torch-rb-0.13.0 ext/torch/fft.cpp
torch-rb-0.12.2 ext/torch/fft.cpp
torch-rb-0.12.1 ext/torch/fft.cpp
torch-rb-0.12.0 ext/torch/fft.cpp
torch-rb-0.11.2 ext/torch/fft.cpp
torch-rb-0.11.1 ext/torch/fft.cpp
torch-rb-0.11.0 ext/torch/fft.cpp
torch-rb-0.10.2 ext/torch/fft.cpp
torch-rb-0.10.1 ext/torch/fft.cpp
torch-rb-0.10.0 ext/torch/fft.cpp
torch-rb-0.9.2 ext/torch/fft.cpp
torch-rb-0.9.1 ext/torch/fft.cpp
torch-rb-0.9.0 ext/torch/fft.cpp
torch-rb-0.8.3 ext/torch/fft.cpp
torch-rb-0.8.2 ext/torch/fft.cpp
torch-rb-0.8.1 ext/torch/fft.cpp