diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2019-01-31 20:22:52 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2019-01-31 20:22:52 (GMT) |
commit | bae744199b69eb7c3f5eda2441cca30cb8c6175f (patch) | |
tree | 564d199dd08ba149cd34f7b0cbae6514a19dfc59 /bin/batch/raybsub | |
parent | 252beb50b69d68ef087f00aded1994a3d9b235f0 (diff) | |
download | hdf5-bae744199b69eb7c3f5eda2441cca30cb8c6175f.zip hdf5-bae744199b69eb7c3f5eda2441cca30cb8c6175f.tar.gz hdf5-bae744199b69eb7c3f5eda2441cca30cb8c6175f.tar.bz2 |
Add more specific batch scripts.
Add script raybsub to handle submitting .lsf files on ray with bsub <
script.lsf syntax that we couldn't handle with CMake.
Add hpc-cmake-tgz option for bin/release.
Diffstat (limited to 'bin/batch/raybsub')
-rw-r--r-- | bin/batch/raybsub | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/batch/raybsub b/bin/batch/raybsub new file mode 100644 index 0000000..19dceef --- /dev/null +++ b/bin/batch/raybsub @@ -0,0 +1,7 @@ +#!/bin/tcsh + +# ray.llnl.gov requires a '<' with bsub for submitting .lsf batch jobs. +# CMake is reluctant to pass the '<', so we put it in this script and use +# the script to submit the bsub command on ray. + +bsub < $1 |