Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
RadioObservatory
LOFAR
Commits
3b6e0000
Commit
3b6e0000
authored
6 years ago
by
Jan David Mol
Browse files
Options
Downloads
Patches
Plain Diff
Task #0: Use 10 iterations for better statistics
parent
949258bb
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
RTCP/Cobalt/GPUProc/src/gpu_load.cc
+14
-11
14 additions, 11 deletions
RTCP/Cobalt/GPUProc/src/gpu_load.cc
with
14 additions
and
11 deletions
RTCP/Cobalt/GPUProc/src/gpu_load.cc
+
14
−
11
View file @
3b6e0000
...
@@ -113,18 +113,21 @@ int main(int argc, char **argv) {
...
@@ -113,18 +113,21 @@ int main(int argc, char **argv) {
// Initialize subbands partitioning administration (struct BlockID). We only
// Initialize subbands partitioning administration (struct BlockID). We only
// do the 1st block of whatever.
// do the 1st block of whatever.
in
.
blockID
.
block
=
0
;
in
.
blockID
.
globalSubbandIdx
=
0
;
in
.
blockID
.
localSubbandIdx
=
0
;
in
.
blockID
.
subbandProcSubbandIdx
=
0
;
size_t
block
(
0
);
LOG_INFO
(
"Processing ..."
);
LOG_INFO
(
"Processing ..."
);
for
(
block
=
0
;
block
<
nrBlocksPerIntegration
&&
!
out
.
emit_correlatedData
;
block
++
)
{
for
(
size_t
iteration
=
0
;
iteration
<
10
;
iteration
++
)
{
LOG_DEBUG_STR
(
"Processing block #"
<<
block
);
in
.
blockID
.
block
=
0
;
cwq
.
processSubband
(
in
,
out
);
in
.
blockID
.
globalSubbandIdx
=
0
;
cwq
.
postprocessSubband
(
out
);
in
.
blockID
.
localSubbandIdx
=
0
;
in
.
blockID
.
subbandProcSubbandIdx
=
0
;
out
.
emit_correlatedData
=
false
;
size_t
block
(
0
);
for
(
block
=
0
;
block
<
nrBlocksPerIntegration
&&
!
out
.
emit_correlatedData
;
block
++
)
{
LOG_DEBUG_STR
(
"Processing block #"
<<
block
);
cwq
.
processSubband
(
in
,
out
);
cwq
.
postprocessSubband
(
out
);
}
}
}
return
0
;
return
0
;
...
...
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