Skip to content

Commit c97ca96

Browse files
authored
Merge pull request #949 from CEED/jeremy/small-doc-fix
Small doc update
2 parents dfb11d3 + 2288fb5 commit c97ca96

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

benchmarks/petsc-bps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function run_tests()
2121

2222
# Some of the available options are:
2323
# -degree <1>: Polynomial degree of tensor product basis
24-
# -qextra <1>: Number of extra quadrature points
24+
# -q_extra <1>: Number of extra quadrature points
2525
# -ceed </cpu/self>: CEED resource specifier
2626
# -local_nodes <1000>: Target number of locally (per rank) owned nodes
2727

benchmarks/petsc-bpsraw.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function run_tests()
2121

2222
# Some of the available options are:
2323
# -degree <1>: Polynomial degree of tensor product basis
24-
# -qextra <1>: Number of extra quadrature points
24+
# -q_extra <1>: Number of extra quadrature points
2525
# -ceed </cpu/self>: CEED resource specifier
2626
# -local <1000>: Target number of locally (per rank) owned nodes
2727

examples/fluids/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The following options are common among all problem types:
6060
- Polynomial degree of tensor product basis (must be >= 1)
6161
- `1`
6262

63-
* - `-qextra`
63+
* - `-q_extra`
6464
- Number of extra quadrature points
6565
- `2`
6666

examples/petsc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The following arguments can be specified for all of the above examples:
6161
- `-ceed` - CEED resource specifier
6262
- `-problem` - CEED benchmark problem to solve
6363
- `-degree` - Polynomial degree of tensor product basis
64-
- `-qextra` - Number of extra quadrature points
64+
- `-q_extra` - Number of extra quadrature points
6565
- `-test` - Testing mode (do not print unless error is large)
6666
- `-benchmark` - Benchmarking mode (prints benchmark statistics)
6767

@@ -84,7 +84,7 @@ The following arguments can be specified for the area example:
8484
- `-ceed` - CEED resource specifier
8585
- `-problem` - Problem to solve, either 'cube' or 'sphere'
8686
- `-petscspace_degree` - Polynomial degree of tensor product basis
87-
- `-qextra` - Number of extra quadrature points
87+
- `-q_extra` - Number of extra quadrature points
8888
- `-test` - Testing mode (do not print unless error is large)
8989
- `-mesh` - Read mesh from file
9090

examples/solids/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The command line options just shown are the minimum requirements to run the mini
9696
- CEED resource specifier
9797
- `/cpu/self`
9898

99-
* - `-qextra`
99+
* - `-q_extra`
100100
- Number of extra quadrature points
101101
- `0`
102102

examples/solids/src/cl-options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PetscErrorCode ProcessCommandLineOptions(MPI_Comm comm, AppCtx app_ctx) {
4040
CHKERRQ(ierr);
4141

4242
app_ctx->q_extra = 0;
43-
ierr = PetscOptionsInt("-qextra", "Number of extra quadrature points",
43+
ierr = PetscOptionsInt("-q_extra", "Number of extra quadrature points",
4444
NULL, app_ctx->q_extra, &app_ctx->q_extra, NULL);
4545
CHKERRQ(ierr);
4646

0 commit comments

Comments
 (0)