mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
slurm-process: -n28 fo uniq call
This commit is contained in:
parent
0166b4d09e
commit
a762664063
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ echo ">>> Converting dataset to .jsonl.gz";
|
||||||
/usr/bin/env time -v src/index.mjs recordify --verbose --rainfall "${RAINFALL}" --water "${WATER}" --output "${OUTPUT}" --count-file "${COUNT_FILE}" ${ARGS};
|
/usr/bin/env time -v src/index.mjs recordify --verbose --rainfall "${RAINFALL}" --water "${WATER}" --output "${OUTPUT}" --count-file "${COUNT_FILE}" ${ARGS};
|
||||||
echo ">>> Deduplicating dataset";
|
echo ">>> Deduplicating dataset";
|
||||||
# This also automatically recompresses for us - hence the source/target rather than in-place
|
# This also automatically recompresses for us - hence the source/target rather than in-place
|
||||||
srun --comment 'RainUniq' --exclusive -p compute /usr/bin/env time -v src/index.mjs uniq --source "${OUTPUT}" --target "${OUTPUT_UNIQ}" --count-file "${COUNT_FILE}";
|
srun --comment 'RainUniq' --exclusive -p compute -n28 /usr/bin/env time -v src/index.mjs uniq --source "${OUTPUT}" --target "${OUTPUT_UNIQ}" --count-file "${COUNT_FILE}";
|
||||||
echo ">>> Removing intermediate output";
|
echo ">>> Removing intermediate output";
|
||||||
rm -r "${OUTPUT}";
|
rm -r "${OUTPUT}";
|
||||||
echo ">>> Queuing .jsonl.gz → tfrecord";
|
echo ">>> Queuing .jsonl.gz → tfrecord";
|
||||||
|
|
Loading…
Reference in a new issue