Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
exa
docs
Commits
c61c101d
Commit
c61c101d
authored
2 weeks ago
by
Jordan Musser
Browse files
Options
Downloads
Patches
Plain Diff
Updates
parent
ddb6fc3a
No related branches found
No related tags found
1 merge request
!117
Updates for MR1446
Pipeline
#44030
passed
2 weeks ago
Stage: build-docs
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/source_docs/user_guide/inputs/advanced.rst
+27
-56
27 additions, 56 deletions
docs/source_docs/user_guide/inputs/advanced.rst
docs/source_docs/user_guide/quick_start/BuildingMFIX.rst
+4
-6
4 additions, 6 deletions
docs/source_docs/user_guide/quick_start/BuildingMFIX.rst
with
31 additions
and
62 deletions
docs/source_docs/user_guide/inputs/advanced.rst
+
27
−
56
View file @
c61c101d
...
...
@@ -53,54 +53,38 @@ The following inputs must be preceded by "amrex."
Load balancing
--------------
Note that when running a granular simulation, i.e., no fluid phase,
:cpp:
`mfix.
dual_grid` must be 0
. Hence,
the
:cpp:
`particles.max_grid_size` (in each direction) have no meaning. Therefore the fluid grid and tile
Note that when running a granular simulation, i.e., no fluid phase,
`
`mfix.
load_balance`` defaults to ``SingleGrid``
. Hence,
the
`
`particles.max_grid_size`
`
(in each direction) have no meaning. Therefore the fluid grid and tile
sizes should be set for particle load balancing. It may also be necessary to set the blocking factors to 1.
The following inputs must be preceded by "mfix." and determine how we load balance:
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| | Description | Type | Default |
+======================+=======================================================================+=============+==============+
| dual_grid | If true then use the "dual_grid" approach for load balancing | Bool | False |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| regrid_int | How often to regrid (in number of steps at level 0) | Int | -1 |
| | if regrid_int = -1 then no regridding will occur | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| load_balance_fluid | Only relevant if (dual_grid); if so do we also regrid mesh data | Int | 0 |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| load_balance_type | What strategy to use for load balancing | String | KnapSack |
| | Options are "KnapSack", "SFC", or "Greedy" | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| knapsack_weight_type | What weighting function to use if using Knapsack load balancing | String | RunTimeCosts |
| | Options are "RunTimeCosts" or "NumParticles"" | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| knapsack_nmax | Maximum number of grids per MPI process if using knapsack algorithm | Int | 128 |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| greedy_dir | The direction in which the greedy algorithm cuts overloaded boxes | Int | 0 |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| greedy_min_grid_size | The minimum particle grid size in the greedy load balance algorithm | Int | 2 |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| greedy_3d | Partition particle grids in 3D with the greedy algorithhm | Bool | False |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| overload_tolerance* | The ratio between the maximum workload and the average workload | Real | 1.2 |
| | in the greedy algorithm | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| underload_tolerance* | The ratio between the minimum workload and the average workload | Real | 0.8 |
| | in the greedy algorithm | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| grid_pruning | Remove all covered grids from the base mesh; this may result in | Bool | False |
| | disjoined grids | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
\* The greedy partitioning algorithm uses the tolerances to set the expected
workload range for each rank but doesn't strictly enforce them. The algorithm
creates a partition as balance as possible even if the partition doesn't
meet the tolerances.
The following inputs must be preceded by ``mfix`` and determine how we load balance:
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
| | Description | Type | Default |
+==================================+=======================================================================+=============+===================+
| regrid_int | How often to regrid (in number of steps at level 0) | int | 0 |
| | if regrid_int <= 0 then no regridding will occur | | |
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
| load_balance | * ``SingleGrid`` fluid and particles are co-located on the same grids | string | SingleGrid |
| | * ``DualGrid`` fluid and particles live on different grids | | |
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
| load_balance.DualGrid.fluid | Regrid mesh (fluid) in addition to particles when using `DualGrid` | int | 0 |
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
| load_balance.strategy | What strategy to use for load balancing | string | KnapSack |
| | Options are ``KnapSack`` and ``SFC`` | | |
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
| load_balance.weighting | What weighting function to use if using Knapsack load balancing | string | ParticleRunTime |
| | Options are ``ParticleRunTime``, ``ParticleCount`` and ``CellCount`` | | |
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
| knapsack_nmax | Maximum number of grids per MPI process if using knapsack algorithm | int | 128 |
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
| grid_pruning | Remove all covered grids from the base mesh; this may result in | bool | False |
| | disjoined grids | | |
+----------------------------------+-----------------------------------------------------------------------+-------------+-------------------+
To allow a user to verify the breakdown of fluid grids created before running a full simulation, an input option,
:cpp:
`mfix.only_print_grid_report` is supported. By default, it is
:cpp:
`False`. When set to
:cpp:
`True`, the run uses
`
`mfix.only_print_grid_report`
`
is supported. By default, it is
`
`False`
`
. When set to
`
`True`
`
, the run uses
minimal memory to print the grid coverage report and exits immediately after that.
...
...
@@ -118,16 +102,3 @@ The following inputs are defined using the ``particles`` prefix.
| max_grid_size_z | Maximum number of cells at level 0 in each grid in z-direction | Int | 32 |
| | for grids in the ParticleBoxArray if dual_grid is true. | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
.. todo:: Is this needed anymore?
The following inputs must be preceded by "particles."
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
| | Description | Type | Default |
+======================+=======================================================================+=============+==============+
| reduceGhostParticles | Remove unused ghost particles from communication, | Bool | True |
| | only supported by GPU build | | |
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
This diff is collapsed.
Click to expand it.
docs/source_docs/user_guide/quick_start/BuildingMFIX.rst
+
4
−
6
View file @
c61c101d
...
...
@@ -2,8 +2,8 @@ Building MFIX-Exa
==================
This page gives the generic instructions for building MFIX-Exa using gmake and cmake.
The instructions assume you have already downloaded and unpacked the MFIX-Exa code
into a local ``mfix`` directory. If not, please visit the
The instructions assume you have already downloaded and unpacked the MFIX-Exa code
into a local ``mfix`` directory. If not, please visit the
`download page <https://mfix.netl.doe.gov/products/mfix-exa/download/>`_ first.
For HPC cluster specific instructions, please refer to :ref:`GettingStarted:HPC`.
...
...
@@ -44,7 +44,7 @@ Other options that you can set include
+-----------------+----------------------------------+------------------+-------------+
| USE_HIP | Enable HIP GPU support | TRUE / FALSE | FALSE |
+-----------------+----------------------------------+------------------+-------------+
| USE_
DPCPP
| Enable
DPCPP
GPU support | TRUE / FALSE | FALSE |
| USE_
SYCL
| Enable
dpc++
GPU support | TRUE / FALSE | FALSE |
+-----------------+----------------------------------+------------------+-------------+
| USE_HYPRE | Enable HYPRE support | TRUE / FALSE | FALSE |
+-----------------+----------------------------------+------------------+-------------+
...
...
@@ -58,11 +58,9 @@ Other options that you can set include
+-----------------+----------------------------------+------------------+-------------+
| TINY_PROFILE | Include tiny profiling info | TRUE / FALSE | FALSE |
+-----------------+----------------------------------+------------------+-------------+
| DIM | Dimensionality of problem | 2 / 3 | 3 |
+-----------------+----------------------------------+------------------+-------------+
.. note::
**Do not set both USE_OMP and USE_CUDA/HIP/
DPCPP
to true.**
**Do not set both USE_OMP and USE_CUDA/HIP/
SYCL
to true.**
Then type
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment