Skip to content

Commit c8c7056

Browse files
committed
fix config const
Signed-off-by: Jade Abraham <jade.abraham@hpe.com>
1 parent 20c2322 commit c8c7056

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

08-heat-2D.chpl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use ImageUtils;
22

3-
config const nx, ny = 1000;
3+
config const nx = 1000;
4+
config const ny = 1000;
45
config const N = 10000;
56
const alpha = 0.1;
67

09-heat-2D-block.chpl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use BlockDist;
22
use ImageUtils;
33

4-
config const nx, ny = 1000;
4+
config const nx = 1000;
5+
config const ny = 1000;
56
config const N = 10000;
67
const alpha = 0.1;
78

10-heat-2D-stencil.chpl

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use StencilDist;
22
use ImageUtils;
33

4-
config const nx, ny = 1000;
4+
config const nx = 1000;
5+
config const ny = 1000;
56
config const N = 10000;
67
const alpha = 0.1;
78

0 commit comments

Comments
 (0)