Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Master Thesis Custom OMPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
becker29
Master Thesis Custom OMPI
Compare revisions
master to bugfix/rank_setting
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
becker29/master-thesis-custom-ompi
Select target project
No results found
bugfix/rank_setting
Select Git revision
Swap
Target
felixkhals/swp-cm22-planbased-mpi
Select target project
becker29/master-thesis-custom-ompi
felixkhals/swp-cm22-planbased-mpi
2 results
master
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Readd debug print to mpi rank parsing
· 8f98a566
FKHals
authored
2 years ago
8f98a566
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ompi/communicator/comm_init.c
+7
-7
7 additions, 7 deletions
ompi/communicator/comm_init.c
with
7 additions
and
7 deletions
ompi/communicator/comm_init.c
View file @
8f98a566
...
@@ -197,13 +197,13 @@ static int get_modified_ranks(uint32_t jobid, uint32_t vpid, size_t size, opal_v
...
@@ -197,13 +197,13 @@ static int get_modified_ranks(uint32_t jobid, uint32_t vpid, size_t size, opal_v
free
(
rank_to_recv
);
free
(
rank_to_recv
);
//
//
Print modified_ranks array for debugging purposes
// Print modified_ranks array for debugging purposes
//
printf("modified_ranks: [");
printf
(
"modified_ranks: ["
);
//
for (size_t i = 0; i < size; i++) {
for
(
size_t
i
=
0
;
i
<
size
;
i
++
)
{
//
printf("%u", modified_ranks[i]);
printf
(
"%u"
,
modified_ranks
[
i
]);
//
if (i+1 < size) printf(", ");
if
(
i
+
1
<
size
)
printf
(
", "
);
//
}
}
//
printf("]\n");
printf
(
"]
\n
"
);
close
(
socket_fd
);
close
(
socket_fd
);
...
...
This diff is collapsed.
Click to expand it.