Sourish Basu

Results 55 comments of Sourish Basu
trafficstars

Please note that I'm not 100% sure that the error message I've pasted is the root cause for the failure. The way meson builds, it dumps everything on the screen...

Unfortunately, I can't try a different oneapi, because that's the only one installed with MKL on our cluster (beyond my control). I tried just now your `dev.py` route, and it...

FYI, here's a config summary that's printed out before `ninja` starts building: ```shell CC=icx CXX=icx FC=ifx python3 dev.py build -C-Dblas=mkl-dynamic-lp64-seq -C-Dlapack=mkl-dynamic-lp64-seq 💻 meson setup /work2/noaa/co2/sbasu/packages/sources/scipy-1.11.4/build --prefix /work2/noaa/co2/sbasu/packages/sources/scipy-1.11.4/build-install -Dblas=mkl-dynamic-lp64-seq -Dlapack=mkl-dynamic-lp64-seq The...

I wish I could build with a different oneapi, and I've submitted a ticket to the admins to install a later version. Meanwhile, I'll have to do with what's installed,...

Hmm, I do have `g++` on the same system. I just rebuilt with oneapi 2023.1.0 (the latest the admins were able to install), and I still get the errors as...

As for building against `mkl-sdl`, that doesn't seem to exist on our system. At least there are no `pkg-config` files for them: ```shell $ ls /apps/spack-managed/gcc-11.3.1/intel-oneapi-mkl-2022.2.1-ifnryw36ggh5z5fxmdn2w3n5syxhvnr5/mkl/2022.2.1/lib/pkgconfig/ mkl-dynamic-ilp64-iomp.pc mkl-dynamic-lp64-iomp.pc mkl-static-ilp64-iomp.pc mkl-static-lp64-iomp.pc...

I rebuilt with oneapi 2023.1.0, and the good thing is that the build was successful even without removing the [lines](https://github.com/mesonbuild/meson/blob/ebf5757c59d9bceb953dc531c757e07dcf83c081/mesonbuild/modules/python.py#L235-L237) in `meson`. However, `python3 dev.py test` still failed with these...

And this is what I get: ```shell $ ldd build/scipy/spatial/_ckdtree.cpython-311-x86_64-linux-gnu.so linux-vdso.so.1 (0x00007ffe3f144000) libsvml.so => /apps/spack-managed/gcc-11.3.1/intel-oneapi-compilers-2023.1.0-sb753366rvywq75zeg4ml5k5c72xgj72/compiler/2023.1.0/linux/compiler/lib/intel64_lin/libsvml.so (0x000014fa0086f000) libimf.so => /apps/spack-managed/gcc-11.3.1/intel-oneapi-compilers-2023.1.0-sb753366rvywq75zeg4ml5k5c72xgj72/compiler/2023.1.0/linux/compiler/lib/intel64_lin/libimf.so (0x000014fa00478000) libgcc_s.so.1 => /usr/lib64/libgcc_s.so.1 (0x000014fa0045d000) libintlc.so.5 => /apps/spack-managed/gcc-11.3.1/intel-oneapi-compilers-2023.1.0-sb753366rvywq75zeg4ml5k5c72xgj72/compiler/2023.1.0/linux/compiler/lib/intel64_lin/libintlc.so.5 (0x000014fa003df000) libc.so.6 =>...

By the way, during the build stage I am getting a lot of messages such as ```shell performance hint: scipy/special/cython_special.pyx:3471:6: Exception check on 'yve' will always require the GIL to...