Skip to content
Merged
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
13 changes: 13 additions & 0 deletions .github/workflows/a11y-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ jobs:
with:
urls: | # Provide a newline-delimited list of URLs to scan; more information below.
https://southernmethodistuniversity.github.io/hpc_docs/
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/qs_instructor.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/qs_student.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/add_change_project.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/add_class.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/add_remove_users.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/request_change_allocation.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/add_metadata.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/usage_stats.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/archive_project.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/renewals.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/running_jobs.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/faq.html
https://southernmethodistuniversity.github.io/hpc_docs/coldfront/optout.html
repository: "SouthernMethodistUniversity/hpc_docs"
token: ${{ secrets.A11Y_SCAN_ACCESS_TOKEN }}
cache_key: "hpc_docs_a11y_scan" # Provide a filename that will be used when caching results. We recommend including the name or domain of the site being scanned.
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ sphinx:
numfig: True
numfig_secnum_depth: 0
numfig_format:
code-block: "%s"
code-block: "%s"
6 changes: 3 additions & 3 deletions docs/tutorials/globus_box_transfers.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ Click the start button above the side the data is coming from to start the trans

You may want to adjust the transfer settings (for example, to only update new or changed files)

:::{Note}
:::{note}
You do not have to stay on the Globus site while the transfer is happening. It will send an email when completed.
:::

:::{Note}
:::{note}
The transfers can be slow. We typically see between 1-5 MBPS between Box and M3 (connection speeds to other services may vary).
:::

:::{Note}
:::{note}
Box has a file size limit of 50GB
:::

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/slurm/best_practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ $ reportseff -u $USER --since d=1
3575979 CANCELLED 00:00:43 1.2% 14.0% 12.6%
```

:::{Note}
:::{note}
If you command outputs a large number of jobs, the formatting is sometimes not clean.
:::

Expand All @@ -100,7 +100,7 @@ If your program is behaving as expected, consider reducing the number of cores y

The memory efficiency represents the percentage of the requested memory that was used by your job. Realistically, anything about `50%` memory efficiency is good. Due to how memory is measured, programs that dynamically allocate and deallocate memory may fail as a result of running out of memory even if the reported usage is "low." If you know your program allocates most of the memory it uses at the beginning, aiming for `80-90%` efficiency is a good target.

:::{Note}
:::{note}
Memory efficiency is hard to measure. SLURM periodically samples memory usage, so it often misses large spikes of increased memory usage that occurs between samples. It is not unsual for jobs to temporarily use 2x or more memory than reported.
:::

Expand Down