Wideband autonomous SDR analysis engine forked from sdr-visual-suite
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
354B

  1. //go:build !cufft
  2. package gpufft
  3. import "errors"
  4. type Engine struct{}
  5. func Available() bool { return false }
  6. func New(n int) (*Engine, error) {
  7. return nil, errors.New("cufft build tag not enabled")
  8. }
  9. func (e *Engine) Close() {}
  10. func (e *Engine) Exec(in []complex64) ([]complex64, error) {
  11. return nil, errors.New("cufft build tag not enabled")
  12. }