JuliaLinearAlgebra / BLASBenchmarksGPU.jl

Benchmark BLAS libraries on GPUs
https://julialinearalgebra.github.io/BLASBenchmarksGPU.jl/stable/
Other
3 stars 2 forks source link

Use a different Plots.jl backend? #13

Open DilumAluthge opened 3 years ago

DilumAluthge commented 3 years ago

Currently we use PyPlot. This is kind of annoying because it means that we end up depending on PyCall.jl and Conda.jl, and we need to download and install pyplot.

It would be nice to use a different Plots.jl backend. The one constraint is that the backend needs to support doing xscale = :log2. For example, the GR backend for Plots.jl does not support xscale = :log2, so we can't use it.

mcabbott commented 3 years ago

It's a bit more hassle, but you can use :log10 and supply the xticks yourself, right?