diff options
author | Aaron LI <aly@aaronly.me> | 2018-02-02 13:31:30 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-02-02 13:31:30 +0800 |
commit | 1f2758286769fec0bcff2be3457fe243035269a2 (patch) | |
tree | 34c1cce9d3526d6eef4816aa786c29166959101e /bin | |
parent | 2b8dda20b1737794c82ab29a0221e3ffe96cd26c (diff) | |
download | fg21sim-1f2758286769fec0bcff2be3457fe243035269a2.tar.bz2 |
Numba: disable/restrict the Numba JIT usage; needs refactor -> Cython ...
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fg21sim | 2 | ||||
-rwxr-xr-x | bin/get-healpix-patch | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/fg21sim b/bin/fg21sim index cf44efa..eb56df4 100755 --- a/bin/fg21sim +++ b/bin/fg21sim @@ -69,7 +69,7 @@ def main(): logger.info("Setup cosmology model with parameters from configs ...") COSMO.setup(**CONFIGS.cosmology) - logger.info("Importing modules + Numba JIT, waiting ...") + logger.info("Importing modules, waiting ...") from fg21sim.foregrounds import Foregrounds fg = Foregrounds(CONFIGS) fg.preprocess() diff --git a/bin/get-healpix-patch b/bin/get-healpix-patch index 5e4fceb..f985d44 100755 --- a/bin/get-healpix-patch +++ b/bin/get-healpix-patch @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (c) 2017 Weitian LI <weitian@aaronly.me> +# Copyright (c) 2017-2018 Weitian LI <weitian@aaronly.me> # MIT license # @@ -50,7 +50,7 @@ def main(): logger = logging.getLogger(tool) logger.info("COMMAND: {0}".format(" ".join(sys.argv))) - logger.info("Importing necessary modules + Numba JIT, waiting ...") + logger.info("Importing necessary modules, waiting ...") import scipy.ndimage import healpy as hp from reproject import reproject_from_healpix |