IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37391


Ignore:
Timestamp:
Sep 12, 2014, 2:47:14 PM (12 years ago)
Author:
watersc1
Message:

change to move stacks back to lanl.

Location:
tags/ipp-pv3-20140717/ippScripts/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-pv3-20140717/ippScripts/scripts/lap_science.pl

    r37374 r37391  
    3434my $qstack_threshold     = 0.05; # Only make a quickstack if more than 5% of the exposures require it.
    3535my $minimum_stack_inputs = 2;    # We can avoid magicking stack inputs if we have more than this number.
    36 my $maximum_stack_inputs = 0;   # This is the place-holder guess on how big a stack we should process locally.  25 is the best guess.
     36my $maximum_stack_inputs = 25;   # This is the place-holder guess on how big a stack we should process locally.  25 is the best guess.
    3737my $do_updates_pv2       = 0;    # Do updates using the calls needed for PV2. 
    3838
  • tags/ipp-pv3-20140717/ippScripts/scripts/sc_prepare_run.pl

    r37372 r37391  
    251251print COMMAND "date\n";
    252252print COMMAND 'srun -n $SLURM_JOB_NUM_NODES -m cyclic -l /bin/hostname | sort -n | awk \'{printf "%s\n", $2}\' > hosts.${SLURM_JOB_ID}' . "\n";
    253 print COMMAND "${remote_root}/stask_chip.py $remote_config " . 'hosts.${SLURM_JOB_ID} '  . $job_subscription{$stage} . "\n";
     253if ($stage eq "stack") {
     254    print COMMAND "${remote_root}/stask_stack.py $remote_config " . 'hosts.${SLURM_JOB_ID} '  . $job_subscription{$stage} . "\n";
     255}
     256else {
     257    print COMMAND "${remote_root}/stask_chip.py $remote_config " . 'hosts.${SLURM_JOB_ID} '  . $job_subscription{$stage} . "\n";
     258}
    254259print COMMAND "date\n";
    255260close(COMMAND);
Note: See TracChangeset for help on using the changeset viewer.