Changeset 112:9db4adcc9250
- Timestamp:
- 02/16/2012 09:42:05 PM (15 months ago)
- Author:
- Andreas Schaefer <gentryx@…>
- Branch:
- default
- Message:
-
added doc, cosmetics
- Location:
- src/parallelization/hiparsimulator
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r100
|
r112
|
|
| 55 | 55 | "\n" |
| 56 | 56 | "#include \"" + cellSourceFile + "\"\n" |
| | 57 | "\n" |
| 57 | 58 | #include <libgeodecomp/parallelization/hiparsimulator/escapedopenclkernel.h> |
| 58 | 59 | ; |
-
|
r109
|
r112
|
|
| 9 | 9 | namespace HiParSimulator { |
| 10 | 10 | |
| | 11 | /** |
| | 12 | * The PatchAccepter collects grid snippets from steppers, either for |
| | 13 | * IO or for ghostzone synchronization. |
| | 14 | */ |
| 11 | 15 | template<class GRID_TYPE> |
| 12 | 16 | class PatchAccepter |
| 13 | 17 | { |
| | 18 | friend class PatchBufferTest; |
| 14 | 19 | public: |
| 15 | | friend class PatchBufferTest; |
| 16 | | |
| 17 | 20 | const static int DIM = GRID_TYPE::DIM; |
| 18 | 21 | |
-
|
r109
|
r112
|
|
| 10 | 10 | namespace HiParSimulator { |
| 11 | 11 | |
| | 12 | /** |
| | 13 | * PatchProvider fills in grid patches into a Stepper, which is |
| | 14 | * important for ghostzone synchronization, but could be used for |
| | 15 | * steering, too. |
| | 16 | */ |
| 12 | 17 | template<class GRID_TYPE> |
| 13 | 18 | class PatchProvider |