Wideband autonomous SDR analysis engine forked from sdr-visual-suite
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12 строки
527B

  1. // Package gpudemod contains the CUDA-tagged demodulation pipeline scaffolding.
  2. //
  3. // Current state:
  4. // - Standard builds use the !cufft stub.
  5. // - cufft builds allocate GPU buffers and cross the CGO/CUDA launch boundary.
  6. // - If/when a CUDA freq-shift launch succeeds, the shifted IQ is copied back and
  7. // reused by the remaining CPU-side FIR/decimate/NFM pipeline.
  8. //
  9. // This keeps Phase 1 incremental and verifiable while later phases replace the
  10. // placeholder launch wrappers with real kernels.
  11. package gpudemod