diff options
Diffstat (limited to 'cnn_v3/src')
| -rw-r--r-- | cnn_v3/src/cnn_v3_effect.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cnn_v3/src/cnn_v3_effect.cc b/cnn_v3/src/cnn_v3_effect.cc index 92178f7..759e7ef 100644 --- a/cnn_v3/src/cnn_v3_effect.cc +++ b/cnn_v3/src/cnn_v3_effect.cc @@ -198,11 +198,12 @@ void CNNv3Effect::declare_nodes(NodeRegistry& registry) { registry.declare_node(node_bottleneck_, NodeType::GBUF_RGBA32UINT, W / 4, H / 4); // dec1_tex: rgba16float half-res registry.declare_node(node_dec1_, NodeType::GBUF_ALBEDO, W / 2, H / 2); - // output_tex: rgba16float full-res (the declared output_nodes_[0]) + // output_nodes_[0]: rgba16float full-res — declared externally by caller } // --------------------------------------------------------------------------- -// set_film_params — simple linear mapping, no MLP yet +// set_film_params — simple linear mapping (placeholder, no MLP yet) +// TODO(phase-7): replace with CPU forward pass through cnn_v3_film_mlp.bin // --------------------------------------------------------------------------- void CNNv3Effect::upload_weights(WGPUQueue queue, const void* data, |
