Henry de Valence
Henry de Valence
@pietroalbini if it's less work for you, don't worry about writing detailed mentoring instructions -- I'm willing to do the work of reading through the source and figuring stuff out,...
Hi, I'd be interested in helping with this! I don't know about all of the parts of crater that need to be changed, but if someone pointed me at issues...
> So cargo llvm-ir and cargo asm are actually the same exact identical binary... that is, they share 100% of the code :rofl: So having cargo mca doesn't mean that...
I'd like to be able to have Criterion report cycle counts using the RDTSC/RDTSCP instructions on x64. Currently it looks like Criterion is using `std::time::Instant`, which ultimately calls [gettime](https://github.com/rust-lang/rust/blob/6acbb5b65c06d82c867a94c54ce51dab4707ac61/src/libstd/sys/unix/time.rs#L363-L372). It...
That would be great, I'd be happy to help if it would be useful. I made a hacky change in my fork (https://github.com/hdevalence/criterion.rs/commit/0083dbd5e2aa06d40b812600961073a8b553fc38) that replaces `Instant::now()` with RDTSC/P (via the...
Awesome! Right now I'm kind of busy but I should have time to try implementing a custom measurement at the beginning of July.
@shepmaster this is independent of anything to do with criterion or the content of this PR, but just in case it's useful to you or someone else reading this thread,...
What's the new (?) / current (?) plan around vote extensions? We were planning around the previous (?) plan to have 0.36 include all of ABCI++, including vote extensions --...
Tendermint 0.35 deduplicated some proto definitions between `abci` and `types`, notably the `ConsensusParams` and the `BlockParams`. Not including this deduplication in 0.37 will make modeling domain types more difficult.
At some point between Tendermint 0.34 and 0.35, the `SetOption` ABCI request was dropped. I believe it was unused; it's not documented anywhere.