Skip to content

thuyen/signal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic Signal Processing (FFTs) for PyTorch

Installation

sudo apt-get install libfftw3-3

pip install cffi

Then

git clone https://github.com/thuyen/signal

cd signal; python setup.py install

OR

pip install git+https://github.com/thuyen/signal

Supported Operations

fft1, fft2, fft3, ifft1, ifft2, ifft3.

Examples

import torch
from torch.autograd import Variable
from torchsignal import fft1, fft2

# [..., n, 2] array represents complex numbers
x = torch.rand(5, 2).cuda()
y = fft1(x)

# [..., h, w, 2] array represents complex images
x = torch.rand(5, 128, 128, 2).cuda()
y = fft2(x)

# For variables
x = Variable(torch.rand(5, 2).cuda())
y = fft1(x)

x = Variable(torch.rand(5, 128, 128, 2).cuda())
y = fft2(x)

About

Signal Processing Library for PyTorch

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published