User contributions for Jstratt7
From NIMBioS
- 14:52, 7 May 2024 diff hist +148 Rocky Support current
- 17:47, 5 June 2023 diff hist −1 m Rocky User Guide typo
- 04:02, 21 May 2023 diff hist +141 Rocky User Guide
- 21:07, 17 May 2023 diff hist 0 Rocky Support
- 21:05, 17 May 2023 diff hist 0 Rocky Support
- 18:17, 17 May 2023 diff hist +168 Rocky Support
- 18:11, 17 May 2023 diff hist +256 Rocky Support →Compute Node
- 18:02, 17 May 2023 diff hist −43 Rocky Support →Compute Node
- 03:10, 1 May 2023 diff hist +100 Rocky User Guide →Example Jobs
- 02:15, 29 April 2023 diff hist −24 m Rocky Python Prime current
- 02:13, 29 April 2023 diff hist +5,842 N Rocky MATLAB Prime Array Created page with "= Job Array = Job arrays allow you to run the same code many times with a different task id. The task id can then be used to determine which subset of your data to process. This strategy breaks your large job up into multiple smaller jobs that not only execute more quickly but can run concurrently. In the example of discovering prime numbers, lets say we want to discover all the primes in the first 1 million numbers. We could just create code that goes from 1 to 1000..." current
- 20:09, 28 April 2023 diff hist +47 Rocky MATLAB HelloWorld →Running Job current
- 19:54, 28 April 2023 diff hist +2 m Rocky MATLAB HelloWorld
- 19:53, 28 April 2023 diff hist +742 N Rocky MATLAB HelloWorld Created page with "= Code = '''helloworld.m''' <pre> fprintf("hello world"); </pre> = Batch Script = '''helloworld.run''' <pre> #!/bin/bash #SBATCH --job-name=MATLAB_HELLOWORLD #SBATCH --output=logs/matlab_helloworld_%j.out module load MATLAB/2022b matlab -nojvm -batch "run('helloworld.m');" </pre> = Running Job = <pre> [test_user@rocky7 helloworld]$ pwd /home/test_user/projects/matlab/helloworld </pre> <pre> [test_user@rocky7 helloworld]$ ls helloworld.m helloworld.run logs </p..."
- 18:37, 25 April 2023 diff hist +13 m Rocky R HelloWorld current
- 18:34, 25 April 2023 diff hist 0 m Rocky Python Prime
- 01:49, 22 April 2023 diff hist +29 Rocky User Guide →Example Jobs
- 21:30, 21 April 2023 diff hist −37 Rocky Python Prime Array current
- 20:49, 21 April 2023 diff hist +45 Rocky User Guide →Example Jobs
- 20:48, 21 April 2023 diff hist +87 Rocky Python Prime Array
- 20:46, 21 April 2023 diff hist +1,114 Rocky Python Prime Array
- 20:40, 21 April 2023 diff hist +1,905 Rocky Python Prime Array
- 05:03, 21 April 2023 diff hist +729 Rocky Python Prime Array
- 04:50, 21 April 2023 diff hist +286 Rocky Python Prime Array
- 04:42, 21 April 2023 diff hist +2,007 N Rocky Python Prime Array Created page with "= Job Array = Job arrays allow you to run the same code many times with a different task id. The task id can then be used to determine which subset of your data to process. This strategy breaks your large job up into multiple smaller jobs that not only execute more quickly but can run concurrently. In the example of discovering prime numbers, lets say we want to discover all the primes in the first 1 million numbers. We could just create code that goes from 1 to 1000..."
- 15:05, 19 April 2023 diff hist −113 Rocky Access SSH current
- 20:41, 17 April 2023 diff hist 0 m Rocky Job Anatomy
- 14:45, 17 April 2023 diff hist −10 Rocky R HelloWorld →Running Job
- 18:31, 11 April 2023 diff hist +138 Rocky Support
- 18:29, 11 April 2023 diff hist −8 Rocky Support
- 18:28, 11 April 2023 diff hist +6 Rocky Support
- 18:27, 11 April 2023 diff hist +7 Rocky Support
- 18:26, 11 April 2023 diff hist +1 Rocky Support
- 18:26, 11 April 2023 diff hist +952 N Rocky Support Created page with "= Supporting Rocky = Rocky grows through your financial support (e.g., direct costs built into grants or start up funds). By contributing to building and maintaining Rocky, you can assure priority access to the resources you contribute. = Node Costs = Below are examples of node costs. While we update the below list routinely, hardware prices change daily. The below table is meant to give a sense of scale and not a guaranteed cost. ==== Storage Node ==== Storage..."
- 20:36, 10 April 2023 diff hist +1 Rocky Python Prime
- 20:36, 10 April 2023 diff hist +11 Rocky Python Prime →Batch Script
- 19:54, 10 April 2023 diff hist +1 Rocky User Guide
- 19:54, 10 April 2023 diff hist −1 Rocky User Guide →Environmental Modules
- 19:53, 10 April 2023 diff hist +98 Rocky User Guide →Environmental Modules
- 19:51, 10 April 2023 diff hist +4,117 N Rocky Environments Created page with "= About = Rocky uses Lmod to easily set up environments for your projects. By default your Rocky session has a minimal of software/utilities available to you. By loading modules, environment variables and paths are set to give you easy access to not only language utilities and libraries but also specific versions of those. To use lmod, you will use the <code>module</code> command. = Loading Modules = By default, support for R is not loaded. <pre> [test_user@rocky7..." current
- 17:51, 10 April 2023 diff hist +51 Rocky Python Prime
- 17:48, 10 April 2023 diff hist +1 Rocky User Guide
- 17:47, 10 April 2023 diff hist +8 Rocky User Guide →Logging in to Rocky
- 17:46, 10 April 2023 diff hist +1 Rocky User Guide
- 17:45, 10 April 2023 diff hist +53 Rocky User Guide →Example Jobs
- 17:44, 10 April 2023 diff hist +1,227 N Rocky Python Prime Created page with "= Python Code = '''prime.py''' <pre> MIN = 2 MAX = 100000 def is_prime(num): if num <= 1: return False else: for i in range(2, num): if (num % i) == 0: return False return True for i in range(MIN, MAX+1): if is_prime(i): print(i) </pre> = Batch Script = '''python-prime.run''' <pre> #SBATCH --job-name=PYTHON_PRIME #SBATCH --output=python_prime_%j.out module load Python python3 prime.py </pre> = Running Job = <pre> [test_user@rocky7 prime]$ pw..."
- 17:22, 10 April 2023 diff hist +3 Rocky User Guide →Submitting a Job
- 17:21, 10 April 2023 diff hist +186 Rocky User Guide
- 17:21, 10 April 2023 diff hist −186 Rocky Job Anatomy
- 17:17, 10 April 2023 diff hist +44 Rocky Job Anatomy →Example Jobs