We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f338e55 commit 5707a58Copy full SHA for 5707a58
src/sst/core/model/configComponent.cc
@@ -578,7 +578,8 @@ ConfigComponent::checkPorts() const
578
for ( unsigned int i = 0; i < links.size(); i++ ) {
579
const ConfigLink* link = graph_links[links[i]];
580
for ( int j = 0; j < 2; j++ ) {
581
-
+ // If this is a nonlocal link, then there is no port to check for index 1
582
+ if ( link->nonlocal && j == 1 ) continue;
583
if ( link->component[j] == id ) {
584
// If port is not found, print an error
585
if ( !Factory::getFactory()->isPortNameValid(type, link->port[j]) ) {
0 commit comments