Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MostafaMollaali
dynamic
Commits
0772dc33
Commit
0772dc33
authored
13 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
improved the output format for run time results into file
parent
c3e43dda
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
SimpleTests/MatrixTests/MatVecMultPerm.cpp
+34
-12
34 additions, 12 deletions
SimpleTests/MatrixTests/MatVecMultPerm.cpp
with
34 additions
and
12 deletions
SimpleTests/MatrixTests/MatVecMultPerm.cpp
+
34
−
12
View file @
0772dc33
...
@@ -32,7 +32,7 @@ int main(int argc, char *argv[])
...
@@ -32,7 +32,7 @@ int main(int argc, char *argv[])
std
::
string
fname_mat
(
argv
[
1
]);
std
::
string
fname_mat
(
argv
[
1
]);
bool
verbose
(
tru
e
);
bool
verbose
(
fals
e
);
// *** reading matrix in crs format from file
// *** reading matrix in crs format from file
std
::
ifstream
in
(
fname_mat
.
c_str
(),
std
::
ios
::
in
|
std
::
ios
::
binary
);
std
::
ifstream
in
(
fname_mat
.
c_str
(),
std
::
ios
::
in
|
std
::
ios
::
binary
);
...
@@ -47,7 +47,7 @@ int main(int argc, char *argv[])
...
@@ -47,7 +47,7 @@ int main(int argc, char *argv[])
CS_read
(
in
,
n
,
iA
,
jA
,
A
);
CS_read
(
in
,
n
,
iA
,
jA
,
A
);
timer
.
stop
();
timer
.
stop
();
if
(
verbose
)
{
if
(
verbose
)
{
std
::
cout
<<
"ok, "
<<
timer
.
elapsed
()
<<
" s
)
"
<<
std
::
endl
;
std
::
cout
<<
"ok,
[wclock:
"
<<
timer
.
elapsed
()
<<
" s
]
"
<<
std
::
endl
;
}
}
}
else
{
}
else
{
std
::
cout
<<
"error reading matrix from "
<<
fname_mat
<<
std
::
endl
;
std
::
cout
<<
"error reading matrix from "
<<
fname_mat
<<
std
::
endl
;
...
@@ -59,7 +59,6 @@ int main(int argc, char *argv[])
...
@@ -59,7 +59,6 @@ int main(int argc, char *argv[])
// MathLib::CRSMatrix<double, unsigned> mat(n, iA, jA, A);
// MathLib::CRSMatrix<double, unsigned> mat(n, iA, jA, A);
MathLib
::
CRSMatrixReordered
mat
(
n
,
iA
,
jA
,
A
);
MathLib
::
CRSMatrixReordered
mat
(
n
,
iA
,
jA
,
A
);
std
::
cout
<<
mat
.
getNRows
()
<<
" x "
<<
mat
.
getNCols
()
<<
std
::
endl
;
double
*
x
(
new
double
[
n
]);
double
*
x
(
new
double
[
n
]);
double
*
y
(
new
double
[
n
]);
double
*
y
(
new
double
[
n
]);
...
@@ -85,8 +84,20 @@ int main(int argc, char *argv[])
...
@@ -85,8 +84,20 @@ int main(int argc, char *argv[])
cluster_tree
.
createClusterTree
(
op_perm
,
po_perm
,
1000
);
cluster_tree
.
createClusterTree
(
op_perm
,
po_perm
,
1000
);
cpu_timer
.
stop
();
cpu_timer
.
stop
();
run_timer
.
stop
();
run_timer
.
stop
();
if
(
verbose
)
if
(
verbose
)
{
std
::
cout
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
std
::
endl
;
std
::
cout
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
std
::
endl
;
}
else
{
if
(
argc
==
4
)
{
std
::
ofstream
result_os
(
argv
[
3
],
std
::
ios
::
app
);
if
(
result_os
)
{
result_os
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
" calc nested dissection perm"
<<
std
::
endl
;
}
result_os
.
close
();
}
else
{
std
::
cout
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
" calc nested dissection perm"
<<
std
::
endl
;
}
}
// applying the nested dissection reordering
// applying the nested dissection reordering
if
(
verbose
)
{
if
(
verbose
)
{
...
@@ -98,6 +109,17 @@ int main(int argc, char *argv[])
...
@@ -98,6 +109,17 @@ int main(int argc, char *argv[])
cpu_timer
.
stop
();
cpu_timer
.
stop
();
run_timer
.
stop
();
run_timer
.
stop
();
if
(
verbose
)
std
::
cout
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
std
::
endl
;
if
(
verbose
)
std
::
cout
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
std
::
endl
;
else
{
if
(
argc
==
4
)
{
std
::
ofstream
result_os
(
argv
[
3
],
std
::
ios
::
app
);
if
(
result_os
)
{
result_os
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
" applying nested dissection perm"
<<
std
::
endl
;
}
result_os
.
close
();
}
else
{
std
::
cout
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
std
::
endl
;
}
}
#ifndef NDEBUG
#ifndef NDEBUG
// MathLib::AdjMat *global_reordered_adj_mat((cluster_tree.getGlobalAdjMat())->getMat(0,n,op_perm, po_perm));
// MathLib::AdjMat *global_reordered_adj_mat((cluster_tree.getGlobalAdjMat())->getMat(0,n,op_perm, po_perm));
...
@@ -109,11 +131,11 @@ int main(int argc, char *argv[])
...
@@ -109,11 +131,11 @@ int main(int argc, char *argv[])
// fname_out += "_adj.bin";
// fname_out += "_adj.bin";
// std::ofstream os (fname_out.c_str(), std::ios::binary);
// std::ofstream os (fname_out.c_str(), std::ios::binary);
// CS_write(os, n, global_reordered_adj_mat->getRowPtrArray(), global_reordered_adj_mat->getColIdxArray(), adj_mat_data);
// CS_write(os, n, global_reordered_adj_mat->getRowPtrArray(), global_reordered_adj_mat->getColIdxArray(), adj_mat_data);
std
::
string
fname_fem_out
(
fname_mat
);
//
std::string fname_fem_out (fname_mat);
fname_fem_out
=
fname_fem_out
.
substr
(
0
,
fname_mat
.
length
()
-
4
);
//
fname_fem_out = fname_fem_out.substr(0,fname_mat.length()-4);
fname_fem_out
+=
"_fem_reordered.bin"
;
//
fname_fem_out += "_fem_reordered.bin";
std
::
ofstream
os
(
fname_fem_out
.
c_str
(),
std
::
ios
::
binary
);
//
std::ofstream os (fname_fem_out.c_str(), std::ios::binary);
CS_write
(
os
,
n
,
mat
.
getRowPtrArray
(),
mat
.
getColIdxArray
(),
mat
.
getEntryArray
());
//
CS_write(os, n, mat.getRowPtrArray(), mat.getColIdxArray(), mat.getEntryArray());
#endif
#endif
if
(
verbose
)
{
if
(
verbose
)
{
...
@@ -128,13 +150,13 @@ int main(int argc, char *argv[])
...
@@ -128,13 +150,13 @@ int main(int argc, char *argv[])
run_timer
.
stop
();
run_timer
.
stop
();
if
(
verbose
)
{
if
(
verbose
)
{
std
::
cout
<<
"done ["
<<
cpu_timer
.
elapsed
()
<<
" sec cpu time], ["
std
::
cout
<<
"done ["
<<
cpu_timer
.
elapsed
()
<<
" sec cpu time], [
wclock:
"
<<
run_timer
.
elapsed
()
<<
" sec
run time
]"
<<
std
::
endl
;
<<
run_timer
.
elapsed
()
<<
" sec]"
<<
std
::
endl
;
}
else
{
}
else
{
if
(
argc
==
4
)
{
if
(
argc
==
4
)
{
std
::
ofstream
result_os
(
argv
[
3
],
std
::
ios
::
app
);
std
::
ofstream
result_os
(
argv
[
3
],
std
::
ios
::
app
);
if
(
result_os
)
{
if
(
result_os
)
{
result_os
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
std
::
endl
;
result_os
<<
cpu_timer
.
elapsed
()
<<
"
\t
"
<<
run_timer
.
elapsed
()
<<
" "
<<
n_mults
<<
" MatVecMults, matrix "
<<
fname_mat
<<
std
::
endl
;
}
}
result_os
.
close
();
result_os
.
close
();
}
else
{
}
else
{
...
...
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