Wideband autonomous SDR analysis engine forked from sdr-visual-suite
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

14 Zeilen
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