addressing issue #17 : https://github.com/ocaml-multicore/parallel-programming-in-multicore-ocaml/issues/17#19
Open
cbadjatya wants to merge 1 commit into
Open
addressing issue #17 : https://github.com/ocaml-multicore/parallel-programming-in-multicore-ocaml/issues/17#19cbadjatya wants to merge 1 commit into
cbadjatya wants to merge 1 commit into
Conversation
Sudha247
requested changes
Oct 24, 2023
Collaborator
Sudha247
left a comment
There was a problem hiding this comment.
Thanks for the PR, @cbadjatya! This is a helpful change to point users to the latest tooling for instrumentation. I've left some suggestions below.
| Olly can be used in the following manner `olly trace program_trace.json 'program.exe [args]'`. The json file can then be viewed in your browser. | ||
|
|
||
| Olly also allows you to measure the GC latency and view a parseable histogram summary of pause durations. Latency can be measured using | ||
| `olly latency 'program.exe [args]'`. |
Collaborator
There was a problem hiding this comment.
latency is deprecated; use gc-stats instead.
|
|
||
| *Olly* Olly is part of the `runtime_events_tools` package. Install Olly on your switch using `opam install runtime_event_tools`. | ||
|
|
||
| Olly can be used in the following manner `olly trace program_trace.json 'program.exe [args]'`. The json file can then be viewed in your browser. |
Collaborator
There was a problem hiding this comment.
olly has two modes now, json and fuchsia.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added a section for instrumentation with Olly.