Difference between revisions of "Script for running Spgdd"
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight> #!/bin/bash # Device List, for example, "/dev/raw/raw1 /dev/raw/raw2 /dev/raw/raw3" DEVICE="/dev/raw/raw1" # DEVICE="/dev/sdb /dev/sdc /dev/sdd /dev/sde /dev/sdf /dev...") |
(No difference)
|
Latest revision as of 15:43, 24 April 2015
#!/bin/bash
# Device List, for example, "/dev/raw/raw1 /dev/raw/raw2 /dev/raw/raw3"
DEVICE="/dev/raw/raw1"
# DEVICE="/dev/sdb /dev/sdc /dev/sdd /dev/sde /dev/sdf /dev/sdg /dev/sdh /dev/sdi /dev/sdj /dev/sdk /dev/sdl /dev/sdm"
# The directory for the test output
OUTDIR="/root/test_results/sgpdd_survey/short_peak"
# OUTDIR="/root/test_results/sgpdd_survey/12raw_dev_output_again"
SIZE=23000
# Concurrent Regions
# CRGLO=1 - start from 1 concurrent regions
# CRGHI=256 - finish at the X number of concurrent regions.
# Before starting a complete run, use the following settings for a quick trial run.
CRGLO=1
CRGHI=256
# Thread count
# THRLO=1
# THRHI=4096
# Before starting a complete run, use the following settings for a quick trial run.
THRLO=1
THRHI=40
mkdir -p ${OUTDIR}
crglo=$CRGLO crghi=$CRGHI thrlo=$THRLO thrhi=$THRHI size=$SIZE rslt_loc=${OUTDIR} rawdevs="$DEVICE" sgpdd-survey
# crglo=$CRGLO crghi=$CRGHI thrlo=$THRLO thrhi=$THRHI size=$SIZE rslt_loc=${OUTDIR} scsidevs="$DEVICE" ./sgpdd-survey