summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-13 12:43:03 +0100
committerskal <pascal.massimino@gmail.com>2026-02-13 12:43:03 +0100
commit5a17ed664edc5a66d3b43d3596c389ab58a4ec19 (patch)
treec586cac1eef132dded5ef6d6ea8e11fe0014a30d /src
parenta101d76e3eab4ee4d93357d71e2c7d4e0114f56f (diff)
CNNv2Effect: Document per-layer kernel sizes support
Updated comments to clarify that per-layer kernel sizes are supported. Code already handles this correctly via LayerInfo.kernel_size field. Changes: - cnn_v2_effect.h: Add comment about per-layer kernel sizes - cnn_v2_compute.wgsl: Clarify LayerParams provides per-layer config Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'src')
-rw-r--r--src/gpu/effects/cnn_v2_effect.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gpu/effects/cnn_v2_effect.h b/src/gpu/effects/cnn_v2_effect.h
index 4389e4f..28aec8c 100644
--- a/src/gpu/effects/cnn_v2_effect.h
+++ b/src/gpu/effects/cnn_v2_effect.h
@@ -1,5 +1,6 @@
// CNN v2 Effect - Parametric Static Features
// Multi-pass post-processing with 7D feature input
+// Supports per-layer kernel sizes (e.g., 1×1, 3×3, 5×5)
#pragma once
#include "gpu/effect.h"