summaryrefslogtreecommitdiff
path: root/src/modules/julia
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-07-28 17:49:23 -0700
committerVito Caputo <vcaputo@pengaru.com>2023-07-28 17:53:07 -0700
commit5ebea1031b1fe0a591c1f74ab63524d4afec6763 (patch)
tree72c8eacfe58232de2cbe0536984d41dcd8308343 /src/modules/julia
parent56dd0d460ec24bbc1b819b2dd4498abfb0850507 (diff)
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.
Diffstat (limited to 'src/modules/julia')
-rw-r--r--src/modules/julia/julia.c2
1 files changed, 1 insertions, 1 deletions
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
© All Rights Reserved