-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider alternative healpix libraries #53
Comments
Performance comparison for healpy, hpgeom, cdshealpix and astropy-healpix on my laptop:
import healpy
import hpgeom
import cdshealpix
import astropy_healpix
import astropy
import numpy as np
n = 1_000_000
rng = np.random.default_rng(0)
ra = rng.uniform(0, 360, n)
dec = np.degrees(np.arccos(rng.uniform(-1, 1, n))) - 90
%timeit healpy.ang2pix(1 << 29, ra, dec, lonlat=True, nest=True)
%timeit hpgeom.angle_to_pixel(1 << 29, ra, dec, lonlat=True, degrees=True, nest=True)
%timeit cdshealpix.nested.lonlat_to_healpix(astropy.coordinates.Longitude(ra, 'deg'), astropy.coordinates.Latitude(dec, 'deg'), 29, num_threads=1)
%timeit cdshealpix.nested.lonlat_to_healpix(astropy.coordinates.Longitude(ra, 'deg'), astropy.coordinates.Latitude(dec, 'deg'), 29, num_threads=8)
%timeit astropy_healpix.lonlat_to_healpix(ra * astropy.units.deg, dec * astropy.units.deg, nside=1 << 29, order='nested') |
Keeping this for posterity. If we can get a Windows-compatible healpix library, we can enable a windows-file-system checking regression test workflow:
|
Ugh. Another ding. |
going through all the available healpix implementations and checking to see if they've ported all the hpgeom
cdshealpix
astropy-healpix
was really rooting for cdshealpix but it unfortunately doesn't have all the necessary functions ported over. if they do end up implementing |
small update on this, since the margin cache code has been significantly changed: we're still reliant on the |
Coming back here after some out-of-band discussion at a hipscat WG meeting: am I reading it right that |
(to be clear, I also am interested in cdshealpix given the rust under-layer, since it seems to support a lot of the same user-level constructs that I like about astropy-healpix, but if I am reading the above it seems like it's out of the running without |
@eteq @delucchi-cmu I slightly updated the original benchmarking comment #53 (comment), basically fixing typos in the code. The performance of the packages hasn't change since I tested it last time. |
I just happened to need cdshealpix for another project and in reading the docs noticed that another package it can use (mocpy) had a get_boundaries function. As a old-school astronomer rather than a modern developer I just wondered if this would solve the missing boundaries issue mentioned earlier and allow a switch to cdshealpix? I'm stuck on windows and would love a version I can use locally. |
Hi, In such cases (feature requests), do not hesitate to open issues. |
Yes, don't hesitate to interact either on |
I just checked the code. |
As discussed today, @delucchi-cmu will make a list of all tickets that need to completed before we make make this switch. |
As of the most recent releases, we are no longer depending on healpy for hats operations. |
We're currently using healpy, which is a somewhat bloated library (also contains matplotlib, cfitsio, etc), and has installation issues on macOS, and is incompatible with Windows.
Alternatives suggested so far:
If any of these are a little behind healpy in terms of raw performance, but otherwise a good replacement, it may be worthwhile to contribute improvements to their code bases.
The text was updated successfully, but these errors were encountered: