-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.hpp
37 lines (32 loc) · 1.05 KB
/
main.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*! \mainpage Gridweaver: A compiler for semi-regular grid computations
*
* \section sec_intro Introduction
*
* Welcome to the documentation for the GridWeaver compiler. This documentation
* is useful for people developing GridWeaver (not necessarily for GridWeaver's
* users.)
*
* GridWeaver is an active library for specifying stencil computations on
* semi-regular grids. Semi-regular grids are meshes consisting of a finite
* number of regular regions, stored as arrays, that connect to one another in
* an irregular fashion. With GridWeaver programmers are able to specify grid
* topology separately from the operations that they wish to apply. GridWeaver
* uses code generation techniques to replace library calls with more efficient,
* inlined, code.
*
* \section sec_install Installation
*
* To install GridWeaver simply execute 'make'.
*/
/** Environmental objects. */
/**
* @defgroup Environmental
*/
/** Utility objects. */
/**
* @defgroup Utils Utilities
*/
/** Input, output, and visualization objects. */
/**
* @defgroup IO
*/