Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Example [Jekyll] website using GitLab Pages. View it live at https://pages.gitlab.io/jekyll

[Learn more about GitLab Pages](https://pages.gitlab.io) or read the the [official GitLab Pages documentation](https://docs.gitlab.com/ce/user/project/pages/).
[Learn more about GitLab Pages](https://pages.gitlab.io) or read the [official GitLab Pages documentation](https://docs.gitlab.com/ce/user/project/pages/).

---

Expand Down Expand Up @@ -120,4 +120,4 @@ unless you want to contribute back to the upstream project.

## Release

This project is relesed as `LLNL-CODE-819660`
This project is released as `LLNL-CODE-819660`
2 changes: 1 addition & 1 deletion flux/section3.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ corona178
```

### Submitting jobs to an existing instance with `flux proxy`
Some user workflows involve getting an allocation (Flux instance) and submitting work to it from outside of that allocation. Flux can accomodate these types of workflows using the `flux proxy` command. You could, for example, create a two node Flux instance with `flux alloc -N2 -n96 -t 1d --bg`, then use a `flux proxy` command to submit work in that instance:
Some user workflows involve getting an allocation (Flux instance) and submitting work to it from outside of that allocation. Flux can accommodate these types of workflows using the `flux proxy` command. You could, for example, create a two node Flux instance with `flux alloc -N2 -n96 -t 1d --bg`, then use a `flux proxy` command to submit work in that instance:
```
[day36@corona212:~]$ flux jobs
JOBID USER NAME ST NTASKS NNODES RUNTIME NODELIST
Expand Down
2 changes: 1 addition & 1 deletion flux/section4.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ By default, the `flux jobs` command only lists your running and pending jobs. Yo
For older completed jobs, accounting information (job size, duration, user, bank, etc) is available from the Flux accounting database via the `flux account view-jobs` command.

### Submitting jobs to a non-default bank
Some LC clusters have Flux's accounting modules enabled. This allows us to use a mutli-factor priority system that includes a hierarchical fairshare algorithm. Users of these systems may have access to multiple banks. One bank will be set as your default bank, but you can choose to submit jobs using an alternate bank by adding `--bank=BANK` to your `flux run|submit|alloc|batch` command.
Some LC clusters have Flux's accounting modules enabled. This allows us to use a multi-factor priority system that includes a hierarchical fairshare algorithm. Users of these systems may have access to multiple banks. One bank will be set as your default bank, but you can choose to submit jobs using an alternate bank by adding `--bank=BANK` to your `flux run|submit|alloc|batch` command.

### Viewing job and bank priorities
You can view the priorities of all jobs in the queue, along with information about dependencies and job urgency (hold, normal, expedite) with `flux jobs -o deps` or, for jobs from all users, `flux jobs -A -o deps`. Note that the highest priority job will also have an estimated start time listed as `eta: TIME` in the `INFO` column of the `flux jobs -A` output.
Expand Down
4 changes: 2 additions & 2 deletions mpi/MPI_appendix/MPI_Aint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DATA TYPES
Note that the Fortran types should only be used in Fortran programs,
and the C types should only be used in C programs. For example, it is
in error to use MPI_INT for a Fortran INTEGER. Datatypes are of type
MPI_Datatype in C and of tyep INTEGER in Fortran.
MPI_Datatype in C and of type INTEGER in Fortran.


C DATATYPES
Expand Down Expand Up @@ -155,7 +155,7 @@ COLLECTIVE OPERATIONS
MPI_MAX
- return the maximum
MPI_MIN
- return the minumum
- return the minimum
MPI_SUM
- return the sum
MPI_PROD
Expand Down
4 changes: 2 additions & 2 deletions mpi/MPI_appendix/MPI_Allgather.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ OUTPUT PARAMETER
NOTES
The MPI standard (1.0 and 1.1) says that

The jth block of data sent from each proess is received by every pro-
The jth block of data sent from each process is received by every pro-
cess and placed in the jth block of the buffer recvbuf .


Expand Down Expand Up @@ -65,7 +65,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the
predefined error handler MPI_ERRORS_RETURN may be used to cause error
values to be returned. Note that MPI does not guarentee that an MPI
values to be returned. Note that MPI does not guarantee that an MPI
program can continue past an error.

MPI_ERR_COMM
Expand Down
4 changes: 2 additions & 2 deletions mpi/MPI_appendix/MPI_Allgatherv.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ OUTPUT PARAMETER
NOTES
The MPI standard (1.0 and 1.1) says that

The jth block of data sent from each proess is received by every pro-
The jth block of data sent from each process is received by every pro-
cess and placed in the jth block of the buffer recvbuf .


Expand Down Expand Up @@ -69,7 +69,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_ERR_BUFFER
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Allreduce.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_ERR_BUFFER
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Alltoall.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_ERR_COMM
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Alltoallv.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_ERR_COMM
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Attr_delete.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_ERR_COMM
Expand Down
4 changes: 2 additions & 2 deletions mpi/MPI_appendix/MPI_Attr_get.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ NOTES


NOTES FOR C
Even though the attr_value arguement is declared as void * , it is
Even though the attr_value argument is declared as void * , it is
really the address of a void pointer. See the rationale in the stan-
dard for more details.

Expand All @@ -59,7 +59,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Attr_put.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
4 changes: 2 additions & 2 deletions mpi/MPI_appendix/MPI_Barrier.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ NOTES
ALGORITHM
If the underlying device cannot do better, a tree-like or combine algo-
rithm is used to broadcast a message wto all members of the communica-
tor. We can modifiy this to use "blocks" at a later time (see
tor. We can modify this to use "blocks" at a later time (see
MPI_Bcast ).


Expand All @@ -45,7 +45,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Bcast.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
4 changes: 2 additions & 2 deletions mpi/MPI_appendix/MPI_Bsend.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ INPUT PARAMETERS

NOTES
This send is provided as a convenience function; it allows the user to
send messages without worring about where they are buffered (because
send messages without worrying about where they are buffered (because
the user must have provided buffer space with MPI_Buffer_attach ).

In deciding how much buffer space to allocate, remember that the buffer
Expand Down Expand Up @@ -70,7 +70,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Bsend_init.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Buffer_attach.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cancel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cart_coords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cart_create.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cart_get.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cart_map.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cart_rank.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cart_shift.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cart_sub.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Cartdim_get.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Comm_compare.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Comm_create.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
4 changes: 2 additions & 2 deletions mpi/MPI_appendix/MPI_Comm_dup.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ NOTES
argument to MPI_Keyval_create . This is particularly useful for (a)
attributes that describe some property of the group associated with the
communicator, such as its interconnection topology and (b) communica-
tors that are given back to the user; the attibutes in this case can
tors that are given back to the user; the attributes in this case can
track subsequent MPI_Comm_dup operations on this communicator.


Expand All @@ -61,7 +61,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Comm_free.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Comm_get_name.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Comm_group.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
2 changes: 1 addition & 1 deletion mpi/MPI_appendix/MPI_Comm_rank.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ERRORS
handler is called. By default, this error handler aborts the MPI job.
The error handler may be changed with MPI_Errhandler_set ; the prede-
fined error handler MPI_ERRORS_RETURN may be used to cause error values
to be returned. Note that MPI does not guarentee that an MPI program
to be returned. Note that MPI does not guarantee that an MPI program
can continue past an error.

MPI_SUCCESS
Expand Down
Loading