From 5ebea1031b1fe0a591c1f74ab63524d4afec6763 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 28 Jul 2023 17:49:23 -0700 Subject: modules/*: use til_fragmenter_slice_per_cpu_x16() where applicable Mechanical change switching til_fragmenter_slice_per_cpu() users over to til_fragmenter_slice_per_cpu_x16(), except sparkler where it's quite detrimental to performance. --- src/modules/julia/julia.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/julia/julia.c') diff --git a/src/modules/julia/julia.c b/src/modules/julia/julia.c index e5ce433..82c899f 100644 --- a/src/modules/julia/julia.c +++ b/src/modules/julia/julia.c @@ -110,7 +110,7 @@ static void julia_prepare_frame(til_module_context_t *context, til_stream_t *str { julia_context_t *ctxt = (julia_context_t *)context; - *res_frame_plan = (til_frame_plan_t){ .fragmenter = til_fragmenter_slice_per_cpu }; + *res_frame_plan = (til_frame_plan_t){ .fragmenter = til_fragmenter_slice_per_cpu_x16 }; ctxt->rr += .01; /* Rather than just sweeping creal,cimag from -2.0-+2.0, I try to keep things confined -- cgit v1.2.1