Sourish Basu

Results 55 comments of Sourish Basu
trafficstars

I still have this problem. Any hopes for a fix? I'm running Meld on Sonoma 14.6.1

I went back to python 3.11.6 and after modifying `numpy/distutils/intelccompiler.py` and `numpy/distutils/fcompiler/intel.py` to use `icx` and `ifx` to match oneapi, I was able to compile my f2py code successfully into...

> CFLAGS='-qopenmp' FC=ifx CC=icx CXX=icpx f2py -c mwe_f2py.pyf --f77flags='-qopenmp' --f90flags='-qopenmp' -liomp5 mwe_f2py.F90 Where can I find this `meson.build` that is being generated? I don't see it in the folder where...

> > > CFLAGS='-qopenmp' FC=ifx CC=icx CXX=icpx f2py -c mwe_f2py.pyf --f77flags='-qopenmp' --f90flags='-qopenmp' -liomp5 mwe_f2py.F90 > > > > > > Where can I find this `meson.build` that is being generated?...

> OTOH, does adding `c_args: ['-qopenmp']` fix this? Might be worth having a way to pass `c_args` from the command line. Since `meson.build` is auto-generated, I do not know how...