From 36f0daca11a9d7b53a88ccebbd613f4acc72fdc8 Mon Sep 17 00:00:00 2001 From: mehmet yusufoglu Date: Thu, 10 Oct 2024 23:18:08 +0200 Subject: [PATCH] 128 128 6000 004 --- example/heatEquation2D/src/heatEquation2D.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example/heatEquation2D/src/heatEquation2D.cpp b/example/heatEquation2D/src/heatEquation2D.cpp index a7f6f7deb8f..46a9ad9620f 100644 --- a/example/heatEquation2D/src/heatEquation2D.cpp +++ b/example/heatEquation2D/src/heatEquation2D.cpp @@ -51,12 +51,12 @@ auto example(TAccTag const&) -> int // simulation defines // {Y, X} - constexpr alpaka::Vec numNodes{64, 64}; + constexpr alpaka::Vec numNodes{128, 128}; constexpr alpaka::Vec haloSize{2, 2}; constexpr alpaka::Vec extent = numNodes + haloSize; - constexpr uint32_t numTimeSteps = 4000; - constexpr double tMax = 0.1; + constexpr uint32_t numTimeSteps = 6000; + constexpr double tMax = 0.04; // x, y in [0, 1], t in [0, tMax] constexpr double dx = 1.0 / static_cast(extent[1] - 1);