-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5d82886
Showing
61 changed files
with
6,452 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#name: github pages | ||
#on: | ||
#push: | ||
#branches: | ||
#- wiki | ||
|
||
#jobs: | ||
#build: | ||
#name: Deploy docs | ||
#runs-on: ubuntu-latest | ||
#steps: | ||
#- name: Checkout main | ||
#uses: actions/checkout@v2 | ||
|
||
#- name: Deploy docs | ||
#uses: mhausenblas/mkdocs-deploy-gh-pages@master | ||
#env: | ||
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
#CONFIG_FILE: mkdocs.yml | ||
#EXTRA_PACKAGES: build-base | ||
#REQUIREMENTS: requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.DS_Store | ||
.venv | ||
site | ||
package-lock.json | ||
package.json | ||
|
||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
hide: | ||
- footer | ||
--- | ||
|
||
`Kokkos` loops accept `Kokkos::RangePolicy` or `Kokkos::MDRangePolicy` objects that specify the n-dimensional range of the loop. `Entity` embeds around these range objects and provides convenient aliases to the most common use cases. | ||
|
||
=== "`.rangeAllCells()`" | ||
|
||
| dimension | return object | ranges | | ||
|-----------|---------------|-------------| | ||
| 1D | `Kokkos::RangePolicy<>` | $i_1\in [0,N_1)$ | | ||
| 2D | `Kokkos::MDRangePolicy<Rank<2>>` | $i_1\in [0,N_1)$, $i_2\in [0,N_2)$ | | ||
| 3D | `Kokkos::MDRangePolicy<Rank<3>>` | $i_1\in [0,N_1)$, $i_2\in [0,N_2)$, $i_3\in [0,N_3)$ | | ||
|
||
=== "`.rangeActiveCells()`" | ||
|
||
| dimension | return object | ranges | | ||
|-----------|---------------|-------------| | ||
| 1D | `Kokkos::RangePolicy<>` | $i_1\in [N_G,N_1-N_G)$ | | ||
| 2D | `Kokkos::MDRangePolicy<Rank<2>>` | $i_1\in [N_G,N_1-N_G)$, $i_2\in [N_G,N_2-N_G)$ | | ||
| 3D | `Kokkos::MDRangePolicy<Rank<3>>` | $i_1\in [N_G,N_1-N_G)$, $i_2\in [N_G,N_2-N_G)$, $i_3\in [N_G,N_3-N_G)$ | | ||
|
||
=== "`.rangeCells(const boxRegion<D>&)`" | ||
|
||
`boxRegion<D>` is an auxiliary object (basically a tuple of size `D`) to specify a custom region of cells. It contains `CellLayer` objects by the number of dimensions. For example: | ||
```c++ | ||
boxRegion<2> left{CellLayer::minActiveLayer, CellLayer::allActiveLayer}; | ||
``` |
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4128e50199276845e65d481f321c53fd9cedfb06 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ece58f5f573fb426c71cd103d9ac98da945cc4dc |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.