Skip to content

Commit

Permalink
possible problem with ARM Mac?
Browse files Browse the repository at this point in the history
I get:
sst: symbol lookup error: /home/vscode/install/lib/sst-elements-library/libhg.so: undefined symbol: sst_hg_make_fcontext
  • Loading branch information
jmlapre committed Jul 22, 2024
1 parent f4532d9 commit 7ace316
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/sst/elements/iris/sumi/sim_transport.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Questions? Contact [email protected]
*/

#include <iris/sumi/rank_mapper.h>
#include <memory>
#include <output.h>
#include <cstring>
#include <iris/sumi/transport.h>
Expand Down Expand Up @@ -253,6 +254,15 @@ SimTransport::SimTransport(SST::Params& params, SST::Hg::App* parent, SST::Compo
pin_delay_ = rdma_pin_latency_.ticks() || rdma_page_delay_.ticks();
page_size_ = params.find<SST::UnitAlgebra>("rdma_page_size", "4096").getRoundedValue();

static int wait;
wait = 0;
while (wait) {
continue;
}
auto bar = std::make_shared<RankMapping>(sid().app_);
RankMapping::addGlobalMapping(sid().app_, "foo", bar);

output.output("%d", sid().app_);
rank_mapper_ = RankMapping::globalMapping(sid().app_);
nproc_ = rank_mapper_->nproc();

Expand Down

0 comments on commit 7ace316

Please sign in to comment.