Sacha Verweij
Sacha Verweij
Attempt at fixing a minor issue when using Cairo backends: https://github.com/lobingera/Compose.jl/pull/1. Thanks!
> Rendering of bitmap in .svg is unclear Are low resolution embedded bitmaps common? Is this issue significant outside of that case? Best!
Attempt at fixing another minor issue: https://github.com/lobingera/Compose.jl/pull/2. Thanks!
> Do you mean low resolution is the rare case and we can live with the artefacts? Correct, I wonder whether that conjecture holds. To expand, I imagine the rendering...
Constructions like that above are better represented as collections of vector primitives than as embedded bitmaps. Insofar as I am aware, the primary use case for embedded bitmaps is incorporation...
Interesting. The eval/sample distinction is not what tripped me up. (That setup/teardown occur only for each sample, not for each eval, I read just before posting the issue; hence I...
To check my understanding, either avoiding `tune!` or benchmarking e.g. ``` julia N = 10 A = Hermitian(Array(SymTridiagonal(fill(2, N), ones(N)))); C = copy(A) @benchmark (copy!($C.data, $A.data); Base.LinAlg.chol!($C)) ``` are the...
Perfect --- thanks again!
We are exploring migration from XUnit to ReTest, and the ability to include files containing testsets within a testset is important to us as well: Much of our test code...
cc @caseykneale :)