Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
0d14604d
Commit
0d14604d
authored
10 years ago
by
Lorenzo Moneta
Browse files
Options
Downloads
Patches
Plain Diff
Improve binarySearchTime test. Remove graphics output by default
parent
0cf56bec
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
math/mathcore/test/binarySearchTime.cxx
+66
-38
66 additions, 38 deletions
math/mathcore/test/binarySearchTime.cxx
with
66 additions
and
38 deletions
math/mathcore/test/binarySearchTime.cxx
+
66
−
38
View file @
0d14604d
...
...
@@ -16,20 +16,22 @@
using
namespace
std
;
const
int
npass
=
100000
;
const
int
npass
0
=
100000
0
;
const
int
maxint
=
100
;
//20;
const
int
minsize
=
10
00
;
//20;
const
int
maxsize
=
1
5
00
;
//500;
const
int
increment
=
10
;
const
int
arraysize
=
(
maxsize
-
minsize
)
/
10
+
1
;
const
int
minsize
=
10
;
//20;
const
int
maxsize
=
1
0000
00
;
//500;
const
int
increment
=
10
;
// increment factor (multiplicative)
const
int
arraysize
=
std
::
log10
(
maxsize
/
minsize
)
+
1
;
bool
showGraphics
=
true
;
bool
showGraphics
=
false
;
bool
verbose
=
false
;
template
<
typename
T
>
void
testBinarySearch
(
const
int
n
,
double
*
tTMath
,
double
*
tStd
)
template
<
typename
T
>
bool
testBinarySearch
(
const
int
n
,
double
*
tTMath
,
double
*
tStd
)
{
std
::
cout
<<
"Testing size n = "
<<
n
<<
"
\t
(Time / call in microsec.) "
<<
std
::
endl
;
vector
<
T
>
k
(
n
);
TStopwatch
t
;
TRandom2
r
(
time
(
0
)
);
for
(
Int_t
i
=
0
;
i
<
n
;
i
++
)
{
k
[
i
]
=
(
T
)
r
.
Integer
(
maxint
);
...
...
@@ -37,37 +39,44 @@ template <typename T> void testBinarySearch(const int n, double* tTMath, double*
std
::
sort
(
k
.
begin
(),
k
.
end
());
int
s
=
0
;
int
npass
=
npass0
/
std
::
log10
(
10
*
n
/
minsize
);
int
s1
=
0
;
t
.
Start
();
for
(
int
j
=
0
;
j
<
npass
;
++
j
)
{
for
(
T
elem
=
0
;
elem
<
maxint
;
++
elem
)
{
Long_t
index
=
TMath
::
BinarySearch
((
Long_t
)
n
,
&
k
[
0
],
elem
);
s
+=
index
;
s
1
+=
index
;
}
}
t
.
Stop
();
*
tTMath
=
t
.
RealTime
();
cout
<<
"TMath::BinarySearch time :
\t
"
<<
t
.
RealTime
()
<<
endl
;
cout
<<
"sum "
<<
s
<<
endl
;
*
tTMath
=
t
.
RealTime
()
/
npass
*
1.E6
;
cout
<<
"TMath::BinarySearch time :
\t
"
<<
*
tTMath
<<
endl
;
//
cout << "sum " << s
1
<< endl;
s
=
0
;
int
s2
=
0
;
t
.
Start
();
for
(
int
j
=
0
;
j
<
npass
;
++
j
)
{
for
(
T
elem
=
0
;
elem
<
maxint
;
++
elem
)
{
T
*
pind
;
pind
=
std
::
lower_bound
(
&
k
[
0
],
&
k
[
n
],
elem
);
Long_t
index2
=
((
*
pind
==
elem
)
?
(
pind
-
&
k
[
0
])
:
(
pind
-
&
k
[
0
]
-
1
));
s
+=
index2
;
s
2
+=
index2
;
}
}
t
.
Stop
();
*
tStd
=
t
.
RealTime
();
std
::
cout
<<
"std::binary_search time:
\t
"
<<
t
.
RealTime
()
<<
'\n'
<<
std
::
endl
;
cout
<<
"sum "
<<
s
<<
endl
;
*
tStd
=
t
.
RealTime
()
/
double
(
npass
)
*
1.E6
;
std
::
cout
<<
"std::binary_search time:
\t
"
<<
*
tStd
<<
'\n'
<<
std
::
endl
;
// cout << "sum " << s2 << endl;
if
(
s1
!=
s2
)
{
Error
(
"testBinarySearch"
,
"Different results obtained for size n = %d - s1 = %d s2 = %d"
,
n
,
s1
,
s2
);
return
false
;
}
return
true
;
}
void
binarySearchTime
()
bool
binarySearchTime
()
{
vector
<
double
>
tM
(
arraysize
);
vector
<
double
>
tS
(
arraysize
);
...
...
@@ -75,31 +84,40 @@ void binarySearchTime()
//cout << (maxsize-minsize)/10 + 1 << endl;
for
(
int
i
=
minsize
;
i
<=
maxsize
;
i
+=
increment
)
bool
ok
=
true
;
int
j
=
0
;
int
i
=
minsize
;
while
(
i
<=
maxsize
)
{
testBinarySearch
<
Double_t
>
(
i
,
&
tM
[(
i
-
minsize
)
/
10
],
&
tS
[(
i
-
minsize
)
/
10
]);
index
[(
i
-
minsize
)
/
10
]
=
i
;
ok
&=
testBinarySearch
<
Double_t
>
(
i
,
&
tM
[
j
],
&
tS
[
j
]);
index
[
j
]
=
i
;
j
++
;
i
*=
increment
;
}
int
ntest
=
j
;
for
(
int
i
=
minsize
;
i
<=
maxsize
;
i
+=
increment
)
cout
<<
tM
[(
i
-
minsize
)
/
10
]
<<
' '
<<
tS
[(
i
-
minsize
)
/
10
]
<<
endl
;
if
(
verbose
)
{
for
(
int
i
=
0
;
i
<
ntest
;
++
j
)
{
cout
<<
" TMATH - time --- std time "
<<
std
::
endl
;
cout
<<
tM
[
j
]
<<
' '
<<
tS
[
j
]
<<
endl
;
}
}
if
(
showGraphics
)
{
TCanvas
*
c1
=
new
TCanvas
(
"c1"
,
"Comparision of Searching Time"
,
600
,
400
);
TH2F
*
hpx
=
new
TH2F
(
"hpx"
,
"Comparision of Searching Time"
,
arraysize
,
minsize
,
maxsize
,
arraysize
,
0.25
,
tM
[
arraysize
-
1
]
+
0.25
);
hpx
->
SetStats
(
kFALSE
);
hpx
->
Draw
();
c1
->
SetLogx
(
true
);
TGraph
*
gM
=
new
TGraph
(
arraysize
,
&
index
[
0
],
&
tM
[
0
]);
gM
->
SetLineColor
(
2
);
gM
->
SetLineWidth
(
3
);
gM
->
SetMarkerStyle
(
20
);
gM
->
SetTitle
(
"TMath::BinarySearch()"
);
gM
->
Draw
(
"
SAME
"
);
gM
->
Draw
(
"
ALP
"
);
TGraph
*
gS
=
new
TGraph
(
arraysize
,
&
index
[
0
],
&
tS
[
0
]);
gS
->
SetLineColor
(
3
);
gS
->
SetLineWidth
(
3
);
gS
->
SetMarkerStyle
(
20
);
gS
->
SetTitle
(
"std::binary_search()"
);
gS
->
Draw
(
"SAME"
);
...
...
@@ -108,14 +126,19 @@ void binarySearchTime()
legend
->
AddEntry
(
gS
,
"std::binary_search()"
);
legend
->
Draw
();
hpx
->
GetXaxis
()
->
SetTitle
(
"Array Size"
);
hpx
->
GetYaxis
()
->
SetTitle
(
"Time"
);
gM
->
SetTitle
(
"Comparision of Searching Time"
);
gM
->
GetXaxis
()
->
SetTitle
(
"Array Size"
);
gM
->
GetYaxis
()
->
SetTitle
(
"Time"
);
c1
->
Show
();
}
cout
<<
"Test done!"
<<
endl
;
if
(
ok
)
cout
<<
"Test done!"
<<
endl
;
else
cout
<<
"Error: Test Failed!"
<<
endl
;
return
ok
;
}
int
main
(
int
argc
,
char
**
argv
)
...
...
@@ -124,14 +147,20 @@ int main(int argc, char **argv)
{
cerr
<<
"Usage: "
<<
argv
[
0
]
<<
" [-ng]
\n
"
;
cerr
<<
" where:
\n
"
;
cerr
<<
" -ng : no graphics mode"
;
cerr
<<
" -g : graphics mode
\n
"
;
cerr
<<
" -v : verbose mode"
;
cerr
<<
endl
;
exit
(
1
);
}
if
(
argc
==
2
&&
strcmp
(
argv
[
1
],
"-ng"
)
==
0
)
if
(
argc
==
2
&&
strcmp
(
argv
[
1
],
"-g"
)
==
0
)
{
showGraphics
=
true
;
}
if
(
argc
==
2
&&
strcmp
(
argv
[
1
],
"-v"
)
==
0
)
{
showGraphics
=
false
;
showGraphics
=
true
;
verbose
=
true
;
}
TApplication
*
theApp
=
0
;
...
...
@@ -139,8 +168,7 @@ int main(int argc, char **argv)
theApp
=
new
TApplication
(
"App"
,
&
argc
,
argv
);
binarySearchTime
();
cout
<<
argc
<<
endl
;
bool
ok
=
binarySearchTime
();
if
(
showGraphics
)
{
...
...
@@ -149,5 +177,5 @@ int main(int argc, char **argv)
theApp
=
0
;
}
return
0
;
return
(
ok
)
?
0
:
1
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment