R. Martinho Fernandes

Results 35 issues of R. Martinho Fernandes

Vim allows the use of `:earlier 30m` to undo everything back to what it was like thirty minutes ago. Can we get VsVim to have this functionality?

feature request
undo redo

The documentation needs to be updated for #56 and #63.

feature
docs

The changes in #65 need to be documented.

docs
done
interface

#65 is a breaking change, so it needs a migration strategy.

enhancement
interface

Hot code performs differently from cold code. Caches and stuff. Currently execution order goes like this: benchmark0/sample0, benchmark0/sample1, ..., benchmark0/sampleN, benchmark1/sample0, benchmark1/sample1, ..., benchmark1/sampleN, ..., benchmarkM/sample0, benchmarkM/sample1, ..., benchmarkM/sampleN. This...

feature
measurement
runner

Grouping benchmarks into suites enables certain functionality like having different sets of parameters for different benchmarks.

feature
runner
interface

Sometimes things other than time need to be measured. Nonius should support collecting additional metrics like, e.g., cache misses and branch mispredictions. Ideally this would be a generically extensible feature...

measurement
runner
interface

Given #36, it is only natural to automate verification of fitness to different models, in order to estimate the likelihood of some code belonging to a particular complexity class.

feature
stats

If benchmarks can be parameterized, once can run the same code over inputs of different sizes, for example, and check how some algorithm scales with input.

feature
runner
interface

Chandler Carruth introduced two interesting functions to control compiler optimization in fine-grained and unintrusive manner in his talk at CppCon2015. Nonius should provide these out of the box.

feature
measurement
interface