Commit 45dd36a7 authored by Deepak Rangarajan's avatar Deepak Rangarajan Committed by Jordan Musser
Browse files

Fix gpu memory inputs descriptions (exa/docs!111)

parent 33e3e204
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ The following inputs must be preceded by "mfix."
| ooo_debug              |  If true then print the name of the routine we are in                 |   Bool      | False        |
+------------------------+-----------------------------------------------------------------------+-------------+--------------+
| only_print_grid_report |  Do not time-march the simulation. Simply generate the grid report    |   Bool      | False        |
|                        |  and exit.                                                            |             | False        |
|                        |  and exit.                                                            |             |              |
+------------------------+-----------------------------------------------------------------------+-------------+--------------+


@@ -29,7 +29,7 @@ The following inputs must be preceded by "amrex."
+------------------------+-----------------------------------------------------------------------+-------------+--------------+
| fpe_trap_zero          |  Abort if a division by zero is computed.                             |  Int        | 0            |
+------------------------+-----------------------------------------------------------------------+-------------+--------------+
| fpe_trap_overflow      |  Abort if and overflow is detected.                                   |  Int        | 0            |
| fpe_trap_overflow      |  Abort if an overflow is detected.                                    |  Int        | 0            |
+------------------------+-----------------------------------------------------------------------+-------------+--------------+

GPU memory
@@ -37,15 +37,17 @@ GPU memory

The following inputs must be preceded by "amrex."

+----------------------------+-----------------------------------------------------------------------+-------------+--------------+
+----------------------------+-----------------------------------------------------------------------+-------------+---------------+
|                            | Description                                                           |   Type      | Default       |
+============================+=======================================================================+=============+==============+
| the_arena_is_managed       | Abort if an invalid floating point exception is encountered.          |  Int        | 0            |
+----------------------------+-----------------------------------------------------------------------+-------------+--------------+
| the_arena_init_size        | Abort if and overflow is detected.                                    |  Int        | 0            |
+----------------------------+-----------------------------------------------------------------------+-------------+--------------+
| abort_on_out_of_gpu_memory | Abort if a division by zero is computed.                              |  Int        | 0            |
+----------------------------+-----------------------------------------------------------------------+-------------+--------------+
+============================+=======================================================================+=============+===============+
| the_arena_is_managed       | Use managed memory for the main arena.                                |  Int        | 0             |
+----------------------------+-----------------------------------------------------------------------+-------------+---------------+
| the_arena_init_size        | Main memory arena's initial size in bytes.                            |  Int        | 3/4 of system |
|                            |                                                                       |             | device memory |
+----------------------------+-----------------------------------------------------------------------+-------------+---------------+
| abort_on_out_of_gpu_memory | Abort if free device memory is less than the amount an arena is       |  Int        | 0             |
|                            | asked to allocate.                                                    |             |               |
+----------------------------+-----------------------------------------------------------------------+-------------+---------------+


Load balancing