From 106f13febf8d9261e8b0587dc0ac1fbbc510b0cd Mon Sep 17 00:00:00 2001 From: Jerry-Jzy Date: Tue, 17 Dec 2024 19:18:04 -0500 Subject: [PATCH] delete comment --- deepxde/data/pde_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deepxde/data/pde_operator.py b/deepxde/data/pde_operator.py index f53e541e8..cca1b15a0 100644 --- a/deepxde/data/pde_operator.py +++ b/deepxde/data/pde_operator.py @@ -267,7 +267,7 @@ def forward_call(trunk_input): return aux[0]((inputs[0], trunk_input)) if self.pde.pde is not None: - # Each f has the shape (`N1`, `N2`), inputs[1] has the shape (`N2`, `dim2`), outputs has the shape (`N1`, `N2`) + # Each f has the shape (`N1`, `N2`) f = self.pde.pde( inputs[1], (outputs, forward_call), model.net.auxiliary_vars )