Sourish Basu

Results 35 comments of Sourish Basu

Just pinging this thread again, since the issue has not been resolved. As before, I'm happy to perform any tests with intel oneapi 2023.1.

@oleksandr-pavlyk Thanks for the detailed instructions, now `python dev.py test` proceeds further than before. There are no unresolved symbols. However, it has been stuck at this stage for the past...

Hmm, for me, this is where it gets stuck: ``` $ PYTHONPATH=/work2/noaa/co2/sbasu/packages/sources/scipy-1.11.4/build-install/lib/python3.11/site-packages:$PYTHONPATH time -f "%E %M %P" python -m pytest -vv --pyargs scipy.linalg.tests.test_matfuncs =============================================================================== test session starts ================================================================================ platform linux...

So, what is hanging is the call `logm(m, disp=True)` inside `class TestLogM`, method `test_nils`. A print statement before that `logm` succeeds, while a print statement after that is never executed....

Pinging this thread again, because the problem is still there. Does the above mean that for now, I'm out of luck trying to build `scipy` with MKL?

> @AgilentGCMS Please make sure to use `icx_for_scipy.cfg` and `ifx_for_scipy.cfg` to set strict floating point mode. If that was done, it also remains to dig deeper into the algorithm with...

```python from matplotlib import pyplot as plt plt.rcParams['text.antialiased'] True ``` I would be happy to apply the patch you mentioned, but could you tell me how? Due to [this issue](https://github.com/matplotlib/mplcairo/issues/49),...

With the patch, `antialias_t.SUBPIXEL` gets printed. I tried `module://mplcairo.tk` and got this. ![Screenshot 2024-01-03 at 8 28 05 AM](https://github.com/matplotlib/mplcairo/assets/3866945/4613a2a4-9540-45cb-8cec-5b43a91cc8f0) So, same issue with font smoothing as `mplcairo.macosx`.

I should also add that this seems to be a problem only for font sizes at the smaller end. In the above example, when I replace with `size=16`, I get...

I do have some stuff in my `.matplotlibrc` to set the font family and color order for plots, so I replaced all that with a `.matplotlibrc` where the only non-commented...