Uwe Fechner
Uwe Fechner
Integers in QML are 32bit. Did you try sending 32 bit integers?
> @ufechner7 Could I see the characteristics of your blackbox ? The blackbox is not multi-threaded (well, perhaps some BLAS operations are, but I am not using Julia multi-threading. I...
Does a comment stop merging?
Nice improvements with Julia 1.9-beta2: ```julia @time @eval include("bench4.jl") # Julia 1.8.4: 7.68s # Julia 1.9-beta2: 0.59s ``` So I guess we can close this when 1.9 is released.
The following command works for me as a workaround when using the REPL: ``` PyPlot.show(block=false) ```
Any progress on this? What would be the required steps to do this?
Which Python version are you using? How was it installed? And try to test it in a Julia REPL outside of vscode to be sure that this is not a...
Did you try (as explained in the README): ``` ENV["PYTHON"]="" Pkg.build("PyCall") ``` which will install a version of Python and Matplotlib for Julia projects only?
PyPlot is working fine for me on Windows 10 and on Linux, better than PythonPlot. Did you try: ``` mkdir MyProject cd MyProject julia --project="." using Pkg ENV["PYTHON"]="" pkg"add PyPlot"...
Did you try: ``` ENV["PYTHON"]="" Pkg.build("PyCall") ``` This installs a version of Python and Matplotlib for Julia only and thus avoids compatibility issues with versions installed outside of Julia.