You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The `OMP_NUM_THREADS` variable is set to '1' by default.
564
568
If your code can take advantage of the threading then specify `OMP_NUM_THREADS` to be equal to the number of job cores per node requested.
565
569
566
-
`-M isaac-t-petersen@uiowa.edu`: Set the email address to receive email about jobs. This must be your University of Iowa email address.
570
+
`-M isaac-t-petersen@uiowa.edu`: Set the email address to receive email about jobs.
571
+
This must be your University of Iowa email address.
567
572
568
573
`-m eas`: Specify when to send an email message (;;;; )
569
574
@@ -573,7 +578,8 @@ If your code can take advantage of the threading then specify `OMP_NUM_THREADS`
573
578
- `s` = when job is suspended
574
579
- `n` = no mail is sent
575
580
576
-
`-l mf=512G`: request a particular quantity of memory you expect to use (to be available for your computation to start; the request is only applicable at scheduling time. It is not a limit.)
581
+
`-l mf=512G`: request a particular quantity of memory you expect to use (to be available for your computation to start; the request is only applicable at scheduling time.
582
+
It is not a limit.)
577
583
578
584
`-l h_vmem=512G`: request a particular quantity of virtual memory you expect to use (to be available for your computation to start; the request is only applicable at scheduling time.
579
585
It is not a limit.)
@@ -669,6 +675,7 @@ But, there may be more recent version of `R` installed in the "Additional Softwa
669
675
## Compile `R`
670
676
671
677
If you want to compile a more recent version of `R` than is available in the software stacks, see [here](https://brandonlebeau.org/2022/06/02/compile-hpc-iowa/) (archived at <https://perma.cc/C6EX-EZL4>).
678
+
However, we now compile the most recent version of `R` (and packages) using a [container](#sec-container).
672
679
673
680
## Install `R` packages
674
681
@@ -921,6 +928,19 @@ Try increasing the max memory available and decreasing the number of cores and/o
921
928
922
929
<https://gforge.se/2015/02/how-to-go-parallel-in-r-basics-tips/#Memory_load> (archived at <https://perma.cc/2JRF-8Y5F>)
923
930
931
+
## Error: `$'\r': command not found`
932
+
933
+
```bash
934
+
/opt/sge/default/spool/argon-itf-bx47-36/job_scripts/5685660: line 2: $'\r': command not found
935
+
```
936
+
937
+
That often means your job script has Windows (CRLF) line endings instead of Unix (LF).
938
+
You can fix the line endings with the following command:
0 commit comments