Wideband autonomous SDR analysis engine forked from sdr-visual-suite
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
665B

  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. // - kernels.cu contains the first real candidate kernel source, ready for
  9. // toolchain-backed integration on a CUDA build machine.
  10. //
  11. // This keeps Phase 1 incremental and verifiable while later phases replace the
  12. // placeholder launch wrappers with real kernels.
  13. package gpudemod