Jochen Schröder

Results 39 comments of Jochen Schröder

I think I found the issue. It seems under opensuse at least the simlink from `libjulia.so` to `libjulia.so.1` was not created. which caused the failure in dlpath. Creating a simlink...

I'm experiencing the same issue, moreover forcing to X11 does cause the ulauncher window to close when typing a letter (it's somewhat random, sometime you can type 2 letters). As...

Let me join the discussion as a complete newbie with nushell. I recently read about nushell and wanted to try it out. So to get myself familiar with the way...

I just tested again: ``` $vf new jupytest # create virtual environment $pip install jupyterlab nbclassic $pip install jupytext $touch test.py $jupyter nbclassic ``` If I open the test.py file...

OK I just uninstalled all system files for jupyter and redid it and I still get the same result. Output of `jupyter nbclassic-extension list` ``` Known nbextensions: config dir: /home/jschrod/.virtualenvs/jupytext2/etc/jupyter/nbconfig...

@JohanMabille sorry quite a bit delay. You asked me for that info in #1646 (my answer is provided there).

What version of pythran are you using? This compiles fine for me with latest git and gcc and clang on linux.

I'm not a big user of structured arrays, but I would avoid using the `np` namespace in pythran signatures, as it's inconsistent with other syntax (we don't say np.float64 either)....

It seems much of the speedup comes from the fact that the julia code optimised `np.exp(1j*x)` to: ```python xs,xc = sincos(x) y = xc+1j*xs ``` because x is real. I...

To clarify I called the avgpixel in the case where it differs with: ```python x = np.random.random(size=(1024,1024,3)) out = avgpixel(x, 0.5) ```