-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathFMain.pas
114 lines (98 loc) · 2.65 KB
/
FMain.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
unit FMain;
interface
uses
System.SysUtils,
System.Types,
System.UITypes,
System.Classes,
System.Variants,
System.Diagnostics,
FMX.Types,
FMX.Controls,
FMX.Forms,
FMX.Graphics,
FMX.Dialogs,
FMX.ScrollBox,
FMX.Memo,
FMX.StdCtrls,
FMX.Controls.Presentation,
CalcTests;
type
TFormMain = class(TForm)
ToolBar: TToolBar;
LabelHeader: TLabel;
ButtonAdd: TButton;
Memo: TMemo;
ButtonAddAndSaturate: TButton;
ButtonDistanceSquared: TButton;
procedure FormCreate(Sender: TObject);
procedure ButtonAddClick(Sender: TObject);
procedure ButtonAddAndSaturateClick(Sender: TObject);
procedure ButtonDistanceSquaredClick(Sender: TObject);
private
{ Private declarations }
procedure RunTest(const ACaption: String; const ADelphiProc,
ASIMDProc: TTestProc);
public
{ Public declarations }
end;
var
FormMain: TFormMain;
implementation
{$R *.fmx}
procedure TFormMain.ButtonAddAndSaturateClick(Sender: TObject);
begin
RunTest('Add and saturate', TestAddAndSaturateDelphi, TestAddAndSaturateSIMD);
end;
procedure TFormMain.ButtonAddClick(Sender: TObject);
begin
RunTest('Add 16 bytes', TestAddDelphi, TestAddSIMD);
end;
procedure TFormMain.ButtonDistanceSquaredClick(Sender: TObject);
begin
RunTest('Squared distance between 2 vectors', TestDistanceSquaredDelphi, TestDistanceSquaredSIMD);
end;
procedure TFormMain.FormCreate(Sender: TObject);
begin
{$IF Defined(MSWINDOWS)}
{$IF Defined(CPU64BITS)}
LabelHeader.Text := 'Windows - 64 bit';
{$ELSE}
LabelHeader.Text := 'Windows - 32 bit';
{$ENDIF}
{$ELSEIF Defined(ANDROID)}
LabelHeader.Text := 'Android - 32 bit';
{$ELSEIF Defined(IOS)}
{$IF Defined(CPUX86)}
LabelHeader.Text := 'iOS Simulator - 32 bit';
{$ELSEIF Defined(CPU64BITS)}
LabelHeader.Text := 'iOS - 64 bit';
{$ELSE}
LabelHeader.Text := 'iOS - 32 bit';
{$ENDIF}
{$ELSEIF Defined(MACOS)}
LabelHeader.Text := 'macOS - 32 bit';
{$ENDIF}
UnitTestAdd;
UnitTestAddAndSaturate;
UnitTestDistanceSquared;
end;
procedure TFormMain.RunTest(const ACaption: String; const ADelphiProc,
ASIMDProc: TTestProc);
var
Stopwatch: TStopwatch;
DelphiTimeMS, SIMDTimeMS: Double;
begin
Stopwatch := TStopwatch.StartNew;
ADelphiProc();
DelphiTimeMS := Stopwatch.Elapsed.TotalMilliseconds;
Stopwatch := TStopwatch.StartNew;
ASIMDProc();
SIMDTimeMS := Stopwatch.Elapsed.TotalMilliseconds;
Memo.Lines.Add(ACaption);
Memo.Lines.Add(Format(' * Delphi: %.2f ms, SIMD: %.2f ms',
[DelphiTimeMS, SIMDTimeMS]));
Memo.Lines.Add(Format(' * SIMD Speedup: x %.2f', [DelphiTimeMS / SIMDTimeMS]));
Memo.SelStart := Memo.Text.Length;
end;
end.