Compare commits

...
Sign in to create a new pull request.

3 commits
cpp ... master

Author SHA1 Message Date
Martin Reinecke
004b3aea9a fix typo 2022-09-29 14:59:32 +02:00
Martin Reinecke
3d376d9e8c update configure.ac 2022-05-22 09:38:27 +02:00
Martin Reinecke
6374a3a1ff Add deprecation notice 2021-05-20 12:38:51 +00:00
3 changed files with 14 additions and 4 deletions

View file

@ -1,3 +1,13 @@
NOTICE
======
Active development of this package has stopped. The package will receive bug fixes
if necessary, but otherwise the code has been integrated into the `ducc0`
package (https://gitlab.mpcdf.mpg.de/mtr/ducc), and further development is
taking place there.
Please prefer `ducc0` over `libsharp2` if you are starting a new project!
# Libsharp2
Library for efficient spherical harmonic transforms at arbitrary spins,

View file

@ -1,4 +1,4 @@
AC_INIT([libsharp2], [1.0.0])
AC_INIT([libsharp2],[1.0.0])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
AM_MAINTAINER_MODE([enable])
@ -20,13 +20,13 @@ dnl
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_PROG_CC_C99
m4_version_prereq(2.70, [AC_PROG_CC], [AC_PROG_CC_C99])
AC_OPENMP
# add math library
LIBS="-lm"
AC_PROG_LIBTOOL
LT_INIT
tmpval=`echo $CFLAGS | grep -c '\-DMULTIARCH'`
AM_CONDITIONAL([HAVE_MULTIARCH], [test $tmpval -gt 0])

View file

@ -520,7 +520,7 @@ static void do_sht (sharp_geom_info *ginfo, sharp_alm_info *ainfo,
{
#ifdef USE_MPI
sharp_execute_mpi(MPI_COMM_WORLD,SHARP_MAP2ALM,spin,&alm[itrans*ncomp],&map[itrans*ncomp],ginfo,
ainfo,SHARP_DP|SHARP_ADD,&ttm2a,op_&tom2a);
ainfo,SHARP_DP|SHARP_ADD,&ttm2a,&tom2a);
#else
sharp_execute(SHARP_MAP2ALM,spin,&alm[itrans*ncomp],&map[itrans*ncomp],ginfo,ainfo,
SHARP_DP|SHARP_ADD,&ttm2a,&tom2a);