broukema
broukema
Draft fixes can be seen on the `xz` experimental git branch [1]. See commit 913ddc55 _'liblzma: Vaccinate against an ill patch from RHEL/CentOS 7'_ and commit 17485e88. Commit 913ddc55 has...
@rougier Any chance of a one-week extension? You can see the draft reproducibility paper here: https://github.com/broukema/RBG08_rep/commits/master and the draft software repository here: https://codeberg.org/boud/0807.4260 . I'm reasonably sure that one week...
**Paper Number:** 12 **Reference:** Roukema, B. F.; Buliński, Z.; Gaudin, N. E. Poincaré dodecahedral space parameter estimates Astronomy and Astrophysics, 2008, 492, 657-673 **ADS:** https://ui.adsabs.harvard.edu/abs/2008A%26A...492..657R **DOI:** 10.1051/0004-6361:200810685 **Article age:** 11...
@coolplay - you need to add a hint to f2py by putting `!f2py` in the first five characters of a line that will only be seen by `f2py`: ```` subroutine...
Hi Stefan > I also had this idea and am a big fan of free (as in freedom) > software. However, I think a license change would be difficult >...
That's four and a half years ago. It would be good to finally get CLASS free-licensed.
@lesgourg CLASS is still non-free. It would be good to finally switch this to free software [1][2][3]. In fact, the current situation is [non-violent direct action](https://en.wikipedia.org/wiki/Direct_action#Nonviolent_direct_action) - there are over...
There's a stackoverflow list of 3 workarounds (available through a #SearXNG interface for privacy), where at least one is stated to be thread-unsafe: https://a.opnxng.com/questions/34579769/f2py-error-with-allocatable-arrays I haven't tried your example or...
There's a demo in the documentation at https://numpy.org/doc/stable/f2py/python-usage.html#allocatable-arrays that seems to correspond to Method 2. I named the fortran module `f2pyman.f90` and got two compile warnings: ```` ... /tmp/tmpai_61ch3/src.linux-x86_64-3.11/f2pymanmodule.c: In...
@2sn Method 2 seems to work for me in a practical example in which parallelisation is only done within the fortran context, not at the python level. The pair of...