Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
fd236cf9
There was an error fetching the commit references. Please try again later.
Commit
fd236cf9
authored
3 years ago
by
Tomáš Oberhuber
Committed by
Jakub Klinkovský
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Refactoring segments printing.
parent
4df14dcb
No related branches found
No related tags found
1 merge request
!105
TO/matrices-adaptive-csr
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/TNL/Algorithms/Segments/SegmentsPrinting.h
+25
-51
25 additions, 51 deletions
src/TNL/Algorithms/Segments/SegmentsPrinting.h
with
25 additions
and
51 deletions
src/TNL/Algorithms/Segments/SegmentsPrinting.h
+
25
−
51
View file @
fd236cf9
...
@@ -49,65 +49,39 @@ std::ostream& printSegments( const Segments& segments, std::ostream& str )
...
@@ -49,65 +49,39 @@ std::ostream& printSegments( const Segments& segments, std::ostream& str )
return
str
;
return
str
;
}
}
/**
* \brief Print segments with related content.
*
* \tparam Segments is type of segments.
* \tparam Fetch is a lambda function for reading related data.
* \param segments is an instance of segments.
* \param fetch is an instance of lambda function reading related data. It is supposed to defined as
*
* ```
* auto fetch = [=] __cuda_callable__ ( IndexType globalIdx ) -> ValueType { return data_view[ globalIdx ]; };
* ```
*
* \param str is output stream.
* \return reference to the output stream.
*
* \par Example
* \include Algorithms/Segments/SegmentsPrintingExample-2.cpp
* \par Output
* \include SegmentsPrintingExample-2.out
*/
template
<
typename
Segments
,
template
<
typename
Segments
,
typename
Fetch
>
typename
Fetch
>
st
d
::
ostream
&
printSegments
(
const
Segments
&
segments
,
Fetch
&&
fetch
,
std
::
ostream
&
str
)
st
ruct
SegmentsPrinter
{
{
using
IndexType
=
typename
Segments
::
IndexType
;
SegmentsPrinter
(
const
Segments
&
segments
,
Fetch
&
fetch
)
using
DeviceType
=
typename
Segments
::
DeviceType
;
:
segments
(
segments
),
fetch
(
fetch
)
{}
using
ValueType
=
decltype
(
fetch
(
IndexType
()
)
);
TNL
::
Containers
::
Array
<
ValueType
,
DeviceType
,
IndexType
>
aux
(
1
);
std
::
ostream
&
print
(
std
::
ostream
&
str
)
const
auto
view
=
segments
.
getConstView
();
for
(
IndexType
segmentIdx
=
0
;
segmentIdx
<
segments
.
getSegmentsCount
();
segmentIdx
++
)
{
{
str
<<
"Seg. "
<<
segmentIdx
<<
": [ "
;
using
IndexType
=
typename
Segments
::
IndexType
;
auto
segmentSize
=
segments
.
getSegmentSize
(
segmentIdx
);
using
DeviceType
=
typename
Segments
::
DeviceType
;
for
(
IndexType
localIdx
=
0
;
localIdx
<
segmentSize
;
localIdx
++
)
using
ValueType
=
decltype
(
fetch
(
IndexType
()
)
);
TNL
::
Containers
::
Array
<
ValueType
,
DeviceType
,
IndexType
>
aux
(
1
);
auto
view
=
segments
.
getConstView
();
for
(
IndexType
segmentIdx
=
0
;
segmentIdx
<
segments
.
getSegmentsCount
();
segmentIdx
++
)
{
{
aux
.
forAllElements
(
[
=
]
__cuda_callable__
(
IndexType
elementIdx
,
double
&
v
)
mutable
{
str
<<
"Seg. "
<<
segmentIdx
<<
": [ "
;
v
=
fetch
(
view
.
getGlobalIndex
(
segmentIdx
,
localIdx
)
);
auto
segmentSize
=
segments
.
getSegmentSize
(
segmentIdx
);
}
);
for
(
IndexType
localIdx
=
0
;
localIdx
<
segmentSize
;
localIdx
++
)
auto
value
=
aux
.
getElement
(
0
);
{
str
<<
value
;
aux
.
forAllElements
(
[
=
]
__cuda_callable__
(
IndexType
elementIdx
,
double
&
v
)
mutable
{
if
(
localIdx
<
segmentSize
-
1
)
v
=
fetch
(
view
.
getGlobalIndex
(
segmentIdx
,
localIdx
)
);
str
<<
", "
;
}
);
auto
value
=
aux
.
getElement
(
0
);
str
<<
value
;
if
(
localIdx
<
segmentSize
-
1
)
str
<<
", "
;
}
str
<<
" ] "
<<
std
::
endl
;
}
}
str
<<
" ] "
<<
std
::
endl
;
return
str
;
}
}
return
str
;
}
template
<
typename
Segments
,
typename
Fetch
>
struct
SegmentsPrinter
{
SegmentsPrinter
(
const
Segments
&
segments
,
Fetch
&
fetch
)
:
segments
(
segments
),
fetch
(
fetch
)
{}
std
::
ostream
&
print
(
std
::
ostream
&
str
)
const
{
return
printSegments
(
segments
,
fetch
,
str
);
}
protected
:
protected
:
...
...
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