Fix f-string brace escaping in ripple effect CUDA code
Some checks are pending
GPU Worker CI/CD / test (push) Waiting to run
GPU Worker CI/CD / deploy (push) Blocked by required conditions

This commit is contained in:
giles
2026-02-04 09:49:52 +00:00
parent 3b964ba18d
commit 8b9309a90b

View File

@@ -145,10 +145,10 @@ void fused_pipeline(
float wave = sinf(dist * frequency * 0.1f + phase);
float amp = amplitude * expf(-dist * decay * 0.01f);
if (dist > 0.001f) {
if (dist > 0.001f) {{
ripple_dx += rdx / dist * wave * amp;
ripple_dy += rdy / dist * wave * amp;
}
}}
}}
'''