Skip to content

Instantly share code, notes, and snippets.

@tsutof
tsutof / FM De-modulation Benchmark.ipynb
Last active May 25, 2021 11:08
FM De-Modulation with cuSignal and CuPy on Jetson Nano
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tsutof
tsutof / WaveReader.py
Created May 25, 2019 07:11
WAV FFT Analyzer with CuPy
# -*- coding: utf-8 -*-
import numpy as np
import wave
import pyaudio
import time
class WaveReader:
def __init__(self, fname, chunk_size):
self.wav = wave.open(fname, "rb")