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
0b610820
Commit
0b610820
authored
13 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
- fixed invalid read in method remoeRows of class template CRSMatrix
- changes in test program
parent
61276aba
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MathLib/LinAlg/Sparse/CRSMatrix.h
+27
-12
27 additions, 12 deletions
MathLib/LinAlg/Sparse/CRSMatrix.h
SimpleTests/MatrixTests/MatTestRemoveRowsCols.cpp
+12
-18
12 additions, 18 deletions
SimpleTests/MatrixTests/MatTestRemoveRowsCols.cpp
with
39 additions
and
30 deletions
MathLib/LinAlg/Sparse/CRSMatrix.h
+
27
−
12
View file @
0b610820
...
...
@@ -194,19 +194,17 @@ public:
/**
* erase rows and columns from sparse matrix
* @param n_rows_cols number of rows / columns to remove
* @param rows sorted list of rows that should be removed
* @param cols sorted list of columns that should be removed
* @param rows_cols sorted list of rows/columns that should be removed
*/
void
eraseEntries
(
IDX_TYPE
n_rows_cols
,
IDX_TYPE
const
*
const
rows
,
IDX_TYPE
const
*
const
cols
)
void
eraseEntries
(
IDX_TYPE
n_rows_cols
,
IDX_TYPE
const
*
const
rows_cols
)
{
IDX_TYPE
n_cols
(
MatrixBase
::
_n_rows
);
//*** remove the rows
removeRows
(
n_rows_cols
,
rows
);
removeRows
(
n_rows_cols
,
rows
_cols
);
//*** transpose
transpose
(
n_cols
);
//*** remove columns in original means removing rows in the transposed
removeRows
(
n_rows_cols
,
cols
);
removeRows
(
n_rows_cols
,
rows_
cols
);
//*** transpose again
transpose
(
MatrixBase
::
_n_rows
);
}
...
...
@@ -241,11 +239,16 @@ protected:
row_ptr_new
[
0
]
=
0
;
IDX_TYPE
row_cnt
(
1
),
erase_row_cnt
(
0
);
for
(
unsigned
k
(
0
);
k
<
MatrixBase
::
_n_rows
;
k
++
)
{
if
(
k
!=
rows
[
erase_row_cnt
])
{
if
(
erase_row_cnt
<
n_rows_cols
)
{
if
(
k
!=
rows
[
erase_row_cnt
])
{
row_ptr_new
[
row_cnt
]
=
_row_ptr
[
k
+
1
]
-
_row_ptr
[
k
];
row_cnt
++
;
}
else
{
erase_row_cnt
++
;
}
}
else
{
row_ptr_new
[
row_cnt
]
=
_row_ptr
[
k
+
1
]
-
_row_ptr
[
k
];
row_cnt
++
;
}
else
{
erase_row_cnt
++
;
}
}
...
...
@@ -269,7 +272,20 @@ protected:
row_cnt
=
0
;
// copy column index and data entries
for
(
IDX_TYPE
k
(
0
);
k
<
MatrixBase
::
_n_rows
;
k
++
)
{
if
(
k
!=
rows
[
erase_row_cnt
])
{
if
(
erase_row_cnt
<
n_rows_cols
)
{
if
(
k
!=
rows
[
erase_row_cnt
])
{
const
IDX_TYPE
end
(
_row_ptr
[
k
+
1
]);
// walk through row
for
(
IDX_TYPE
j
(
_row_ptr
[
k
]);
j
<
end
;
j
++
)
{
col_idx_new
[
row_ptr_new_tmp
[
row_cnt
]]
=
_col_idx
[
j
];
data_new
[
row_ptr_new_tmp
[
row_cnt
]]
=
_data
[
j
];
row_ptr_new_tmp
[
row_cnt
]
++
;
}
row_cnt
++
;
}
else
{
erase_row_cnt
++
;
}
}
else
{
const
IDX_TYPE
end
(
_row_ptr
[
k
+
1
]);
// walk through row
for
(
IDX_TYPE
j
(
_row_ptr
[
k
]);
j
<
end
;
j
++
)
{
...
...
@@ -278,8 +294,6 @@ protected:
row_ptr_new_tmp
[
row_cnt
]
++
;
}
row_cnt
++
;
}
else
{
erase_row_cnt
++
;
}
}
...
...
@@ -288,6 +302,7 @@ protected:
BASELIB
::
swap
(
col_idx_new
,
_col_idx
);
BASELIB
::
swap
(
data_new
,
_data
);
delete
[]
row_ptr_new_tmp
;
delete
[]
row_ptr_new
;
delete
[]
col_idx_new
;
delete
[]
data_new
;
...
...
This diff is collapsed.
Click to expand it.
SimpleTests/MatrixTests/MatTestRemoveRowsCols.cpp
+
12
−
18
View file @
0b610820
...
...
@@ -51,33 +51,27 @@ int main(int argc, char *argv[])
MathLib
::
CRSMatrix
<
double
,
unsigned
>
*
mat
(
new
MathLib
::
CRSMatrix
<
double
,
unsigned
>
(
n
,
iA
,
jA
,
A
));
const
double
val0
((
*
mat
)(
1
,
1
));
std
::
cout
<<
val0
<<
std
::
endl
;
// double val ((*(const_cast<MathLib::CRSMatrix<double, unsigned> const*>(mat)))(1,1));
// std::cout << val << std::endl;
MathLib
::
CRSMatrix
<
double
,
unsigned
>
const
&
ref_mat
(
*
mat
);
double
val1
(
ref_mat
(
1
,
1
));
std
::
cout
<<
val1
<<
std
::
endl
;
const
unsigned
n_rows_cols_to_erase
(
3
);
unsigned
*
rows_to_erase
(
new
unsigned
[
n_rows_cols_to_erase
]);
unsigned
*
cols_to_erase
(
new
unsigned
[
n_rows_cols_to_erase
]);
const
unsigned
n_rows_cols_to_erase
(
300
);
unsigned
*
rows_cols_to_erase
(
new
unsigned
[
n_rows_cols_to_erase
]);
for
(
unsigned
k
(
0
);
k
<
n_rows_cols_to_erase
;
k
++
)
{
rows_to_erase
[
k
]
=
(
k
+
1
)
*
2
;
cols_to_erase
[
k
]
=
(
k
+
1
)
*
2
;
rows_cols_to_erase
[
k
]
=
(
k
+
1
)
*
2
;
}
mat
->
eraseEntries
(
n_rows_cols_to_erase
,
rows_to_erase
,
cols_to_erase
);
delete
[]
rows_to_erase
;
delete
[]
cols_to_erase
;
RunTimeTimer
timer
;
std
::
cout
<<
"erasing "
<<
n_rows_cols_to_erase
<<
" rows and columns ... "
<<
std
::
flush
;
timer
.
start
();
mat
->
eraseEntries
(
n_rows_cols_to_erase
,
rows_cols_to_erase
);
timer
.
stop
();
std
::
cout
<<
"ok, "
<<
timer
.
elapsed
()
<<
" s"
<<
std
::
endl
;
delete
[]
rows_cols_to_erase
;
fname_mat
=
argv
[
2
];
std
::
ofstream
out
(
fname_mat
.
c_str
(),
std
::
ios
::
binary
);
CS_write
(
out
,
mat
->
getNRows
(),
mat
->
getRowPtrArray
(),
mat
->
getColIdxArray
(),
mat
->
getEntryArray
());
out
.
close
();
std
::
cout
<<
"wrote "
<<
fname_mat
<<
" with "
<<
mat
->
getNRows
()
<<
" rows and "
<<
mat
->
getRowPtrArray
()[
mat
->
getNRows
()]
<<
" entries"
<<
std
::
endl
;
delete
mat
;
}
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