请输入您要查询的百科知识:

 

词条 Stencil code
释义

  1. Definition

      Example: 2D Jacobi iteration  

  2. Stencils

  3. Implementation issues

  4. Libraries

     Patch-based libraries  Cell-based libraries 

  5. See also

  6. References

  7. External links

Stencil codes are a class of iterative kernels[1]

which update array elements according to some fixed pattern, called a stencil.[2]

They are most commonly found in the codes of computer simulations, e.g. for computational fluid dynamics in the context of scientific and engineering applications.

Other notable examples include solving partial differential equations,[1] the Jacobi kernel, the Gauss–Seidel method,[2] image processing[1] and cellular automata.[3]

The regular structure of the arrays sets stencil codes apart from other modeling methods such as the Finite element method. Most finite difference codes which operate on regular grids can be formulated as stencil codes.

Definition

Stencil codes perform a sequence of sweeps (called timesteps) through a given array.[2] Generally this is a 2- or 3-dimensional regular grid.[3] The elements of the arrays are often referred to as cells. In each timestep, the stencil code updates all array elements.[2] Using neighboring array elements in a fixed pattern (called the stencil), each cell's new value is computed. In most cases boundary values are left unchanged, but in some cases (e.g. LBM codes) those need to be adjusted during the computation as well. Since the stencil is the same for each element, the pattern of data accesses is repeated.[4]

More formally, we may define stencil codes as a 5-tuple with the following meaning:[3]

  • is the index set. It defines the topology of the array.
  • is the (not necessarily finite) set of states, one of which each cell may take on on any given timestep.
  • defines the initial state of the system at time 0.
  • is the stencil itself and describes the actual shape of the neighborhood. There are elements in the stencil.
  • is the transition function which is used to determine a cell's new state, depending on its neighbors.

Since I is a k-dimensional integer interval, the array will always have the topology of a finite regular grid. The array is also called simulation space and individual cells are identified by their index . The stencil is an ordered set of relative coordinates. We can now obtain for each cell the tuple of its neighbors indices

Their states are given by mapping the tuple to the corresponding tuple of states , where is defined as follows:

This is all we need to define the system's state for the following time steps with :

Note that is defined on and not just on since the boundary conditions need to be set, too. Sometimes the elements of may be defined by a vector addition modulo the simulation space's dimension to realize toroidal topologies:

This may be useful for implementing periodic boundary conditions, which simplifies certain physical models.

Example: 2D Jacobi iteration

To illustrate the formal definition, we'll have a look at how a two dimensional Jacobi iteration can be defined. The update function computes the arithmetic mean of a cell's four neighbors. In this case we set off with an initial solution of 0. The left and right boundary are fixed at 1, while the upper and lower boundaries are set to 0. After a sufficient number of iterations, the system converges against a saddle-shape.

{{multiple image
| width = 100
| align = center
| footer = 2D Jacobi Iteration on a Array
| image1 = 2D_Jacobi_t_0000.png
| alt1 = S_0
| caption1 =
| image2 = 2D_Jacobi_t_0200.png
| alt2 = S_200
| caption2 =
| image3 = 2D_Jacobi_t_0400.png
| alt3 = S_400
| caption3 =
| image4 = 2D_Jacobi_t_0600.png
| alt4 = S_600
| caption4 =
| image5 = 2D_Jacobi_t_0800.png
| alt5 = S_800
| caption5 =
| image6 = 2D_Jacobi_t_1000.png
| alt6 = S_1000
| caption6 =

Stencils

The shape of the neighborhood used during the updates depends on the application itself. The most common stencils are the 2D or 3D versions of the von Neumann neighborhood and Moore neighborhood. The example above uses a 2D von Neumann stencil while LBM codes generally use its 3D variant. Conway's Game of Life uses the 2D Moore neighborhood. That said, other stencils such as a 25-point stencil for seismic wave propagation[5] can be found, too.

{{multiple image
| width = 100
| align = center
| footer = A selection of stencils used in various scientific applications.
| image1 = Moore neighborhood (stencil diagram).gif
| alt1 = 9-point stencil
| caption1 = 9-point 2D stencil
| image2 = Von Neumann neighborhood.svg
| alt2 = 5-point stencil
| caption2 = 5-point 2D stencil
| image3 = 3D_von_Neumann_Stencil_Model.svg
| alt3 = 6-point stencil
| caption3 = 7-point 3D stencil
| image4 = 3D_Earth_Sciences_Stencil_Model.svg
| alt4 = 25-point stencil
| caption4 = 25-point 3D stencil

Implementation issues

Many simulation codes may be formulated naturally as stencil codes. Since computing time and memory consumption grow linearly with the number of array elements, parallel implementations of stencil codes are of paramount importance to research.[6]

This is challenging since the computations are tightly coupled (because of the cell updates depending on neighboring cells) and most stencil codes are memory bound (i.e. the ratio of memory accesses to calculations is high).[7]

Virtually all current parallel architectures have been explored for executing stencil codes efficiently;[8]

at the moment GPGPUs have proven to be most efficient.[9]

Libraries

Due to both the importance of stencil codes to computer simulations and their high computational requirements, there are a number of efforts which aim at creating reusable libraries to support scientists in implementing new stencil codes. The libraries are mostly concerned with the parallelization, but may also tackle other challenges, such as IO, steering and checkpointing. They may be classified by their API.

Patch-based libraries

This is a traditional design. The library manages a set of n-dimensional scalar arrays, which the user code may access to perform updates. The library handles the synchronization of the boundaries (dubbed ghost zone or halo). The advantage of this interface is that the user code may loop over the arrays, which makes it easy to integrate legacy codes[10]

. The disadvantage is that the library can not handle cache blocking (as this has to be done within the loops[11])

or wrapping of the code for accelerators (e.g. via CUDA or OpenCL). Notable implementations include Cactus, a physics problem solving environment, and waLBerla.

Cell-based libraries

These libraries move the interface to updating single simulation cells: only the current cell and its neighbors are exposed to the user code, e.g. via getter/setter methods. The advantage of this approach is that the library can control tightly which cells are updated in which order, which is useful not only to implement cache blocking,[9]

but also to run the same code on multi-cores and GPUs.[12] This approach requires the user to recompile the source code together with the library. Otherwise a function call for every cell update would be required, which would seriously impair performance. This is only feasible with techniques such as class templates or metaprogramming, which is also the reason why this design is only found in newer libraries. Examples are [https://github.com/naoyam/physis Physis] and LibGeoDecomp.

See also

  • Advanced Simulation Library
  • Finite difference method
  • Computer simulation
  • Five-point stencil
  • Stencil jumping

References

1. ^ Roth, Gerald et al. (1997) Proceedings of SC'97: High Performance Networking and Computing. Compiling Stencils in High Performance Fortran.
2. ^ Sloot, Peter M.A. et al. (May 28, 2002) [https://books.google.com/books?id=qVcLw1UAFUsC&pg=PA843&dq=stencil+array&sig=g3gYXncOThX56TUBfHE7hnlSxJg#PPA843,M1 Computational Science – ICCS 2002: International Conference, Amsterdam, The Netherlands, April 21–24, 2002. Proceedings, Part I.] Page 843. Publisher: Springer. {{ISBN|3-540-43591-3}}.
3. ^ Fey, Dietmar et al. (2010) [https://books.google.com/books?id=RJRZJHVyQ4EC&pg=PA51&dq=fey+grid&hl=de&ei=uGk8TtDAAo_zsgbEoZGpBQ&sa=X&oi=book_result&ct=result&resnum=1&ved=0CCoQ6AEwAA#v=onepage&q&f=true Grid-Computing: Eine Basistechnologie für Computational Science]. Page 439. Publisher: Springer. {{ISBN|3-540-79746-7}}
4. ^ Yang, Laurence T.; Guo, Minyi. (August 12, 2005) [https://books.google.com/books?id=qA4DbnFB2XcC&pg=PA221&dq=Stencil+codes&as_brr=3&sig=H8wdKyABXT5P7kUh4lQGZ9C5zDk High-Performance Computing : Paradigm and Infrastructure.] Page 221. Publisher: Wiley-Interscience. {{ISBN|0-471-65471-X}}
5. ^ Micikevicius, Paulius et al. (2009) 3D finite difference computation on GPUs using CUDA Proceedings of 2nd Workshop on General Purpose Processing on Graphics Processing Units {{ISBN|978-1-60558-517-8}}
6. ^ Datta, Kaushik (2009) Auto-tuning Stencil Codes for Cache-Based Multicore Platforms, Ph.D. Thesis
7. ^ Wellein, G et al. (2009) Efficient temporal blocking for stencil computations by multicore-aware wavefront parallelization, 33rd Annual IEEE International Computer Software and Applications Conference, COMPSAC 2009
8. ^ Datta, Kaushik et al. (2008) Stencil computation optimization and auto-tuning on state-of-the-art multicore architectures, SC '08 Proceedings of the 2008 ACM/IEEE conference on Supercomputing
9. ^ Schäfer, Andreas and Fey, Dietmar (2011) High Performance Stencil Code Algorithms for GPGPUs, Proceedings of the International Conference on Computational Science, ICCS 2011
10. ^ S. Donath, J. Götz, C. Feichtinger, K. Iglberger and U. Rüde (2010) waLBerla: Optimization for Itanium-based Systems with Thousands of Processors, High Performance Computing in Science and Engineering, Garching/Munich 2009
11. ^ Nguyen, Anthony et al. (2010) 3.5-D Blocking Optimization for Stencil Computations on Modern CPUs and GPUs, SC '10 Proceedings of the 2010 ACM/IEEE International Conference for High Performance Computing, Networking, Storage and Analysis
12. ^ Naoya Maruyama, Tatsuo Nomura, Kento Sato, and Satoshi Matsuoka (2011) Physis: An Implicitly Parallel Programming Model for Stencil Computations on Large-Scale GPU-Accelerated Supercomputers, SC '11 Proceedings of the 2011 ACM/IEEE International Conference for High Performance Computing, Networking, Storage and Analysis

External links

  • [https://github.com/naoyam/physis Physis]
  • LibGeoDecomp
  • waLBerla

3 : Computational science|Scientific modeling|Simulation software

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/21 15:32:26