Patrick Lavin

Results 22 comments of Patrick Lavin

I have done some preliminary searching on my own but I've gotten a bit stuck. I tried setting a breakpoint in BaseComponent::createExplicitlyEnabledStatistic. I noticed that when cfg.shared is false, the...

I'm on Ubuntu 20.04. I'm only missing stat names when enabling stats on a component. If I enable all stats, all the names print just fine.

The above was configured with Pin 3.23. I have confirmed that this persists with the most recent commits to the master branches: - https://github.com/sstsimulator/sst-core/commit/7870ad6251c6ec68a3795ae1f5caa336f1090b27 - https://github.com/sstsimulator/sst-elements/commit/0c07b17363b702ec51486af9055762ff14a6fc5b - Pin 3.26 (The...

It seems that if Ariel is unmodified, the error always occurs because of an instruction occurring in between a `START` and an `END` that shouldn't be there, such as another...

Dug into this a bit more. Replicated the issue with the following settings: 1. ran on our testing server 2. recent commits of elements and core 3. `ariel_snb.py` 4. MiniMD...

Is it possible that the inserted calls to `writeMessage` get rearranged somehow? If I were to monitor what was being written to the tunnel, I could identify when an error...

This seems to be related to including `mpi.h` in the program, even if it isn't launched with mpirun. I ran into this issue again with the following program: ``` #include...

I ran `strace -f` on `./hello` and `./hello-nompi` and saw that the `clone` system call is called in the former and not in the latter.

```bash $ cat hello.strace.out | grep clone clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f86d3dbfed0) = 2176972 [pid 2176972] clone(child_stack=0x7f6538d74fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[2176973], tls=0x7f6538d75700, child_tidptr=0x7f6538d759d0) = 2176973 [pid 2176972] clone(child_stack=0x7f6538165fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[2176974], tls=0x7f6538166700, child_tidptr=0x7f65381669d0) = 2176974...