Dmitriy
Dmitriy
The line breaks and indentation are broken when rendering a quote: ``` > The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy...
This issue is to make sure we don't forget that `atomic::load()` and `atomic::store()` are not yet implemented on the GPUs. I have a hack that implements them using `compare_exchange_strong`, but...
@ubauer I'm not actually suggesting to merge this, but just FYI. It's a parallel version of Ripser, parallelized using the algorithm in [this paper](https://mrzv.org/publications/lockfree-persistence/). CC: @grey-narn
I would like to compare `time.offset` across traces from different MPI ranks. I notice in the [Timestamp section](https://software.llnl.gov/Caliper/services.html#timestamp), it says: > Note that timestamps are not synchronized between nodes in...
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: ``` annotation mpi.rank...
I have the following situation (in many different situations): ```c++ // a.hpp class A { class B; void g(const B& b); }; #include "b.hpp" ``` ```c++ // b.hpp class A::B...
Is it possible to demangle the names in the filenames? I feel a URL scheme is very important for documentation. `A3CT12C20T23E` is a lot less readable than `A`.
The line breaks and indentation are broken when rendering a quote: ``` > The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy...
Is the algorithm used for memory reclamation by `crossbeam_epoch` written down somewhere? (I'm looking for more detail than what's sketched on the module's documentation page.)
I have two ingredients. One of them knows about the other one. When configuring the second one, I'd like to be able to access a config value from the first...