Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/bank-compress-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
cp examples/tmpltbank/compress_workflow/*.ini ./
bash -e examples/tmpltbank/compress_workflow/gen.sh
cd output
bash -e ../examples/search/submit.sh
python ../examples/search/check_job.py
find submitdir/work/ -type f -name '*.tar.gz' -delete
- name: store log files
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/inference-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
bash -e examples/workflow/inference/small_test/gen.sh
condor_status
cd gw_output
bash -e ../examples/search/submit.sh
./status
python ../examples/search/check_job.py
find submitdir/work/ -type f -name '*.tar.gz' -delete
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/search-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:
bash -e examples/search/gen.sh
cp *.gwf output/
cd output
bash -e ../examples/search/submit.sh
python ../examples/search/check_job.py
find submitdir/work/ -type f -name '*.tar.gz' -delete
- name: store log files
Expand Down
3 changes: 1 addition & 2 deletions bin/bank/pycbc_geom_aligned_bank
Original file line number Diff line number Diff line change
Expand Up @@ -611,5 +611,4 @@ workflow += bankverify_node
workflow.save()

logging.info("GENERATION SUCCESSFUL.")
logging.info("Submit the resulting dax file to generate your template bank.")
logging.info("See pycbc_submit_dax --help for instructions.")
logging.info("Submit the resulting workflow to generate your template bank.")
251 changes: 0 additions & 251 deletions bin/pycbc_submit_dax

This file was deleted.

14 changes: 8 additions & 6 deletions docs/tmpltbank.rst
Original file line number Diff line number Diff line change
Expand Up @@ -224,19 +224,21 @@ where ``accounting.tag`` should be replaced with one of the valid accounting
tags. On non-LDG clusters, ``--supplement-config-file supplement.ini`` can be
omitted if there are no extra options to give.

After running ``pycbc_geom_aligned_bank``, submit the workflow with
You can either submit the ``pycbc_geom_aligned_bank`` workflow immediately,
using

.. code-block:: bash

pycbc_submit_dax

Run
pycbc_geom_aligned_bank --submit-now


or submit the workflow after generation with the

.. code-block:: bash

pycbc_submit_dax --help
./start

for more details on options for submitting an abstract workflow to condor.
executable supplied in the output folder

--------------------------
Command line options
Expand Down
2 changes: 1 addition & 1 deletion docs/upload_to_gracedb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You also need to be authorized on the gracedb end to do the upload. The initial
Finding input files
============================

To run this code requires some input files from your run. These can be found as follows where RUN_DIR is the place where you ran pycbc_submit_dax::
To run this code requires some input files from your run. These can be found as follows where RUN_DIR is your run directory::

TRIG_FILE=${RUN_DIR}/results/7._result/H1L1-PAGE_FOREGROUND_XMLLOUDEST-1130754617-1019335.xml

Expand Down
22 changes: 10 additions & 12 deletions docs/workflow/pycbc_make_inference_inj_workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,19 @@ to run the workflow.
Plan and execute the workflow
-----------------------------

Change directory into the ``${WORKFLOW_NAME}-output`` directory::

cd ${WORKFLOW_NAME}-output
You can either submit the workflow immediately using the ``--submit-now`` option
or generate it, and then use the ``./start`` executable generated in the output directory.

If you are on the ATLAS cluster (at AEI Hannover) or on an LDG cluster, you
need to define an accounting group tag (talk to your cluster admins if you do
not know what this is). Once you know what accounting-group tag to use, plan
and submit the workflow with::

# submit workflow
pycbc_submit_dax --dax ${WORKFLOW_NAME}.dax \
--no-grid \
--no-create-proxy \
--enable-shared-filesystem \
--accounting-group ${ACCOUNTING_GROUP}
not know what this is). Once you know what accounting-group tag to use, add it
to your config files. ``request_disk`` and ``request_memory`` may also be required.

.. code-block::

[pegasus_profile]
condor|accounting_group = accounting.tag
condor|request_disk = 1024

Here, ``${ACCOUNTING_GROUP}`` is the appropriate tag for your workflow.

Expand Down
Loading
Loading