aboutsummaryrefslogtreecommitdiff
path: root/ell_grid_solve.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-11-23 16:09:08 +0100
committerAnton Khirnov <anton@khirnov.net>2024-04-15 13:34:54 +0200
commit098523b825c14184592a8717c2c3becbf6bc3f9f (patch)
tree691cce5484bb2a63555e688a5bfad8fda7585e70 /ell_grid_solve.c
parent1bf2694303843192e7098876c0fc709307eece65 (diff)
Switch from meson to configure+make.
Meson is an extra dependency and generally sucks.
Diffstat (limited to 'ell_grid_solve.c')
-rw-r--r--ell_grid_solve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ell_grid_solve.c b/ell_grid_solve.c
index dad8861..ecd9d8f 100644
--- a/ell_grid_solve.c
+++ b/ell_grid_solve.c
@@ -353,7 +353,7 @@ static void boundaries_apply(EGSContext *ctx, NDArray *a_dst, int init)
mg2di_timer_stop(&ctx->timer_bnd);
}
-#if HAVE_EXTERNAL_ASM
+#if HAVE_NASM
void mg2di_line_madd_fma3(ptrdiff_t linesize, double *dst, const double *src, double c);
#endif
@@ -980,7 +980,7 @@ int mg2di_egs_init(EGSContext *ctx, int flags)
priv->r.relax_factor *= r->relax_multiplier;
priv->r.line_add = line_madd_c;
-#if HAVE_EXTERNAL_ASM
+#if HAVE_NASM
if (ctx->cpuflags & MG2DI_CPU_FLAG_FMA3)
priv->r.line_add = mg2di_line_madd_fma3;
#endif