IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 36564


Ignore:
Timestamp:
Feb 26, 2014, 3:46:30 PM (12 years ago)
Author:
eugene
Message:

starting to make relastro parallel regions

Location:
branches/eam_branches/ipp-20140206/Ohana/src/relastro
Files:
7 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140206/Ohana/src/relastro/include/relastro.h

    r35763 r36564  
    3030  MARK_BIG_OFFSET    = 0x0010,
    3131} MeasurementMask;
     32
     33typedef struct {
     34  float R;
     35  float D;
     36  unsigned int objID;
     37  unsigned int catID;
     38} MeanPos;
    3239
    3340typedef struct {
  • branches/eam_branches/ipp-20140206/Ohana/src/relastro/src/MosaicOps.c

    r27581 r36564  
    1111
    1212// list of mosaic associated with each image 
    13 static off_t    Nmosaic_for_images; // number of images (for off_ternal checks)
     13static off_t    Nmosaic_for_images; // number of images (for internal checks)
    1414static off_t    *mosaic_for_images; // array of: image -> mosaic
    1515
  • branches/eam_branches/ipp-20140206/Ohana/src/relastro/src/relastro.c

    r35763 r36564  
    4141      exit (0);
    4242
     43    case TARGET_PARALLEL_REGIONS:
     44      // run image updates in parallel across multiple remote machines
     45      relastro_parallel_regions ();
     46      exit (0);
     47
     48    case TARGET_PARALLEL_IMAGES:
     49      // operation on the remote machines in the PARALLEL_REGION mode
     50      relastro_parallel_images ();
     51      exit (0);
     52
    4353    default:
    4454      fprintf (stderr, "impossible!\n");
Note: See TracChangeset for help on using the changeset viewer.