Gabriel Corona
Gabriel Corona
> the files in ~/simgrid-aur/pkg/simgrid-java-git/opt/simgrid have references > to ~/simgrid-aur/pkg/simgrid-java-git/opt/simgrid These are references to the installed files in the installation prefix. It seems to be correct. Are you sure, you...
I do find a source path leak in `bin/tesh`: ``` use lib "/home/myself/simgrid/bin"; ```
You can use `make install/strip` to strip the ELF files from any DWARF debug information (which includes the compilation path). In the current `master` debugging `-g3` is enforced in all...
Some GDB stub and/or plugin might help as well for better support for the user contexts (even outside of MC): - switching between contexts; - support for SMPI privatisation.
I've added some documentation in the README.
Fixed conflicts with #289. Taking random samples with `shuf` does not make as much sense when the samples do not have the same weight.
You can probably sample from your `perf script` output by only selecting 1/100000 data points and you should be fine.
Actually, stackcollapse-perf would have to be modified to implement a non-collapsing/streaming mode in order to do that.
I'm currently using a [poor man's profiler](https://poormansprofiler.org/) for that. It's working OK for my use cases (not in production).