Skip to content

Commit 682884f

Browse files
Github action: auto-update.
1 parent 6a7c1b0 commit 682884f

File tree

71 files changed

+329
-339
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+329
-339
lines changed
Binary file not shown.

dev/_downloads/07795e165bda9881ff980becb31905ab/plot_diffusion_advection_solver.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"name": "python",
9797
"nbconvert_exporter": "python",
9898
"pygments_lexer": "ipython3",
99-
"version": "3.13.3"
99+
"version": "3.13.4"
100100
}
101101
},
102102
"nbformat": 4,
Binary file not shown.

dev/_downloads/09a1631d14c6eb51e552aa53b9f6d3e8/checkpoint_FNO_darcy.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
"name": "python",
155155
"nbconvert_exporter": "python",
156156
"pygments_lexer": "ipython3",
157-
"version": "3.13.3"
157+
"version": "3.13.4"
158158
}
159159
},
160160
"nbformat": 4,
Binary file not shown.

dev/_downloads/1c2e74cc4f68386faa92c3986ff5e279/plot_embeddings.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"name": "python",
108108
"nbconvert_exporter": "python",
109109
"pygments_lexer": "ipython3",
110-
"version": "3.13.3"
110+
"version": "3.13.4"
111111
}
112112
},
113113
"nbformat": 4,
Binary file not shown.

dev/_downloads/273559202d552ae1f0e540d0854f46bd/plot_burgers_2d_solver.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"name": "python",
9797
"nbconvert_exporter": "python",
9898
"pygments_lexer": "ipython3",
99-
"version": "3.13.3"
99+
"version": "3.13.4"
100100
}
101101
},
102102
"nbformat": 4,

dev/_downloads/3f74a91662afa758e3d845617240e471/plot_DISCO_convolutions.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
},
5959
"outputs": [],
6060
"source": [
61-
"x_in = torch.linspace(0, 2, nx)\ny_in = torch.linspace(0, 3, ny)\n\nx_in, y_in = torch.meshgrid(x_in, y_in)\ngrid_in = torch.stack([x_in.reshape(-1), y_in.reshape(-1)])\n\n# compute the correct quadrature weights\n# IMPORTANT: this needs to be done right in order for the DISCO convolution to be normalized proeperly\nw_x = 2*torch.ones_like(x_in) / nx\nw_y = 3*torch.ones_like(y_in) / ny\nq_in = (w_x * w_y).reshape(-1)"
61+
"x_in = torch.linspace(0, 2, nx)\ny_in = torch.linspace(0, 3, ny)\n\nx_in, y_in = torch.meshgrid(x_in, y_in, indexing='ij')\ngrid_in = torch.stack([x_in.reshape(-1), y_in.reshape(-1)])\n\n# compute the correct quadrature weights\n# IMPORTANT: this needs to be done right in order for the DISCO convolution to be normalized proeperly\nw_x = 2*torch.ones_like(x_in) / nx\nw_y = 3*torch.ones_like(y_in) / ny\nq_in = (w_x * w_y).reshape(-1)"
6262
]
6363
},
6464
{
@@ -112,7 +112,7 @@
112112
},
113113
"outputs": [],
114114
"source": [
115-
"nxo = 90\nnyo = 120\n\nx_out = torch.linspace(0, 2, nxo)\ny_out = torch.linspace(0, 3, nyo)\n\nx_out, y_out = torch.meshgrid(x_out, y_out)\ngrid_out = torch.stack([x_out.reshape(-1), y_out.reshape(-1)])\n\n# compute the correct quadrature weights\nw_x = 2*torch.ones_like(x_out) / nxo\nw_y = 3*torch.ones_like(y_out) / nyo\nq_out = (w_x * w_y).reshape(-1)"
115+
"nxo = 90\nnyo = 120\n\nx_out = torch.linspace(0, 2, nxo)\ny_out = torch.linspace(0, 3, nyo)\n\nx_out, y_out = torch.meshgrid(x_out, y_out, indexing='ij')\ngrid_out = torch.stack([x_out.reshape(-1), y_out.reshape(-1)])\n\n# compute the correct quadrature weights\nw_x = 2*torch.ones_like(x_out) / nxo\nw_y = 3*torch.ones_like(y_out) / nyo\nq_out = (w_x * w_y).reshape(-1)"
116116
]
117117
},
118118
{
@@ -212,7 +212,7 @@
212212
"name": "python",
213213
"nbconvert_exporter": "python",
214214
"pygments_lexer": "ipython3",
215-
"version": "3.13.3"
215+
"version": "3.13.4"
216216
}
217217
},
218218
"nbformat": 4,
Binary file not shown.

0 commit comments

Comments
 (0)