Figures + minor changes in visualization scripts
After Width: | Height: | Size: 159 KiB |
After Width: | Height: | Size: 146 KiB |
After Width: | Height: | Size: 146 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 61 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 147 KiB |
After Width: | Height: | Size: 147 KiB |
After Width: | Height: | Size: 147 KiB |
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 258 KiB |
After Width: | Height: | Size: 258 KiB |
After Width: | Height: | Size: 258 KiB |
After Width: | Height: | Size: 168 KiB |
After Width: | Height: | Size: 146 KiB |
After Width: | Height: | Size: 56 KiB |
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
crypted_jobids=( )
|
||||
crypted_jobids=( $crypted_jobids 5024292 ) # ? nodes, high intensity
|
||||
crypted_jobids=( $crypted_jobids 7488914 ) # ? nodes, high problem_socre, boring
|
||||
crypted_jobids=( $crypted_jobids 4296426 ) # 1 node, uses 2 file systems
|
||||
|
||||
set -x
|
||||
for cjobid in ${crypted_jobids[@]}; do
|
||||
./visualize.R $cjobid
|
||||
done
|
||||
|