fFourierD.pas 609 B

123456789101112131415161718192021222324252627282930313233
  1. unit fFourierD;
  2. interface
  3. uses
  4. Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  5. Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, CUDA.Compiler, CUDA.Context,
  6. CUDA.APIComps;
  7. type
  8. TForm4 = class(TForm)
  9. Panel1: TPanel;
  10. Panel2: TPanel;
  11. Label4: TLabel;
  12. Label3: TLabel;
  13. Label5: TLabel;
  14. GLCUDA1: TGLCUDA;
  15. GLCUDADevice1: TGLCUDADevice;
  16. GLCUDACompiler1: TGLCUDACompiler;
  17. private
  18. { Private declarations }
  19. public
  20. { Public declarations }
  21. end;
  22. var
  23. Form4: TForm4;
  24. implementation
  25. {$R *.dfm}
  26. end.