-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Limiting annotation depth in CalQL #201
Comments
Hi @mrzv , Thanks for the report. Currently that's not directly possible, but I'll try to come up with something. You can create flat profiles with You can also filter for specific values with |
@daboehme Another question in the same line of understanding CalQL. I want to print out information about some MPI routines. I can do it for one specific routine at a time via
but if I want to see multiple routines, say, Is there a way to do something like OR inside WHERE? I found that you can do AND by providing multiple WHERE clauses. In general, I'd love to see a better documentation for CalQL. It's clearly very powerful, but I'm struggling to unlock all that power. |
Hi @mrzv, There is some documentation here: https://github.com/LLNL/Caliper/blob/master/doc/sphinx/calql.rst - maybe that helps. Unfortunately there's currently no OR for filtering, though. For MPI specifically you can set CALI_MPI_WHITELIST when taking the measurement to record only a subset of MPI functions. |
@daboehme Thanks. I saw those docs, and I saw the |
This is more of a question than issue report. Is there a way to limit the depth of annotations in CalQL? So for instance if I have:
And I want to print out only sum total time for main and main/foo, is there some magic argument to achieve this? I guess one way to express this is to limit the depth, but another way would be to explicitly specify annotation prefixes I'm interested in.
If not, perhaps this is a feature request after all.
The text was updated successfully, but these errors were encountered: